DEV Community

Discussion on: Keeping your code clean by sweeping out "if" statements

Collapse
 
juancarlospaco profile image
Juan Carlos

But Java has Case Switch... 🤔

Collapse
 
tomazfernandes profile image
Tomaz Lemos

Hi Juan, just don't forget those breaks! 😃 I don't like switch statements at all... But it's more a matter of taste. Thanks for your feedback!

Collapse
 
nsaupke profile image
nsaupke

Java's new way of switches is a sight to behold. While more verbose, I will probably be using your Map methodology mixed with a new switch come Java 14's release

Thread Thread
 
tomazfernandes profile image
Tomaz Lemos

Didn’t see this new switch yet, I’ll take a look... Thanks for sharing!