Java: Out with the Old, In with the New

后端 未结 30 2064
遥遥无期
遥遥无期 2020-12-22 16:11

Java is nearing version 7. It occurs to me that there must be plenty of textbooks and training manuals kicking around that teach methods based on older versions of Java, whe

30条回答
  •  悲&欢浪女
    2020-12-22 16:35

    Enums. Replacing

    public static final int CLUBS = 0;
    public static final int DIAMONDS = 1;
    public static final int HEARTS = 2;
    public static final int SPADES = 3;
    

    with

    public enum Suit { 
      CLUBS, 
      DIAMONDS, 
      HEARTS, 
      SPADES 
    }
    

提交回复
热议问题