62. Understanding the unconditional patterns and nulls in switch expressions Let’s imagine that we use JDK 17 and we have the following code: private static String drive(Vehicle v) { return switch (v) { case Truck truck -> “truck: ” + truck; case Van van -> “van: ” + van; case Vehicle vehicle -> “vehicle: ” […]