Tag: switch

  • Java 21 – Pattern Matching for Switch

    Switch statement in java has gone through a rapid evolution since Java 7. You could compare only integers until Java 7. And then Java 8 allowed you to compare strings and enums as well. And then Java 12 introduced a flurry of new features: Java 13 later introduced yield keyword to be used instead of…