Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
142 results
Want to learn a cleaner way to check an object's type in Java? In this Java 101 video, we introduce pattern matching with ...
15 views
2mo ago
Hi everyone welcome back to the channel as you know we are doing a series on core Java interview questions that are commonly ...
24 views
3mo ago
Java 25 just gave instanceof and switch a massive upgrade! In this clip, we look at JEP 507: Primitive Types in Patterns.
76 views
8mo ago
... 7477 Super 7 Today I'm going to be talking about instance of with pattern matching So modern Java unlike the Java that used to ...
2 views
7mo ago
Permite determinar si un objeto es instancia de una clase, para mas informacion y ejemplos les recomiendo visitar mi blog: ...
10mo ago
Do you know what's happening here? 👇 String s = "Java"; System.out.println(s instanceof Object); This question seems simple ...
19 views
4mo ago
Java has been filling in pattern matching since JDK 16, with primitives as the remaining gap. You could match a String but not an ...
5 views
9d ago
Animal a = new Cat(); Dog d = (Dog) a; // BOOM! ClassCastException The fix senior devs use: if (animal instanceof Dog d) ...
7 views
Understand when and why you can avoid wrapping Supplier instances with custom classes like DummySupplier, and how to ...
0 views
9mo ago
Java 17 is the most important LTS release in recent years — and its features are now a staple in backend developer interviews.
926 views
Learn the Composite design pattern in Java and treat single objects and whole groups exactly the same way through one uniform ...
1 view
Using instanceof Checks Attempting list instanceof java.util.ImmutableCollections does not compile since ImmutableCollections is ...
2w ago
A Shape[] array can genuinely hold real Circles and real Squares at once -- and calling area() on each one still dispatches to the ...
13d ago
Master Java Operators and finally understand how precedence, short-circuiting, and logical operations truly work inside the JVM.
2d ago
Learn how to simplify and modernize exception handling in Java's CompletableFuture using switch expressions and pattern ...
4 views
Java Interview Questions Playlist - Part 4/10 In this video, we'll cover advanced Inheritance and Polymorphism topics: ...
Learn how Java 21 sealed interfaces and pattern matching for switch turn polymorphic command routing into a compile-time ...
Tired of cluttering your codebase with repetitive POJO boilerplate? In this video, you will learn how to leverage modern Java ...
5d ago
从JDK 16 起,Java 的模式匹配逐步补齐,原始类型一直缺席:你能匹配String,却不能匹配int。JEP 532 补上了这块。`x instanceof ...
This is a video that mimics the functions of the 12306 website.
Java 25 is the biggest Java upgrade in years - and my new course, Java 25 Essentials: Master Every New Feature, is now ...
967 views
6d ago
Operators and Control Flow in Java | Module 3 Introduction | BuiltBy Error ☕ In this video, we begin Module 3: Operators and ...
34 views
What Is An Instance In ES6 JavaScript Classes? Are you interested in understanding how JavaScript manages objects and data?
12 views
11mo ago
नमस्कार मित्रांनो! या व्हिडिओमध्ये आपण Java मधील सर्व 8 प्रकारचे ...
10 views