Pattern Matching
instanceof pattern matching (Java 16+)
Code Examples
Pattern matching
java
1
2if (obj instanceof String s) {}
3 instanceof pattern matching (Java 16+)
Pattern matching
1
2if (obj instanceof String s) {}
3 Ask about the topic