Once again I have to abuse my blog to become a noteboard for my memory-impaired little self, every time that I want to use a switch statement I have to look up the syntax. Every time. It’s like this Charles Bronson thing I posted yesterday. My brain has a blacklist for certain things I think. So here’s the The switch Statement
public class SwitchDemo { public static void main(String[] args) { int month = 8; switch (month) { case 1: System.out.println("January"); break; case 2: System.out.println("February"); break; case 3: System.out.println("March"); break; case 4: System.out.println("April"); break; case 5: System.out.println("May"); break; case 6: System.out.println("June"); break; case 7: System.out.println("July"); break; case 8: System.out.println("August"); break; case 9: System.out.println("September"); break; case 10: System.out.println("October"); break; case 11: System.out.println("November"); break; case 12: System.out.println("December"); break; } } }
2 replies on “Java Switch Blacklisted”
Awesome. I always forget too.
and don’t forget the default
default: System.out.println(“What planet are you from?”);