美文网首页
枚举类初始化

枚举类初始化

作者: 黑女2008 | 来源:发表于2016-08-16 15:54 被阅读152次
    enumAccountType{
      SAVING, FIXED, CURRENT;
      privateAccountType(){
      System.out.println(“It is a account type”);
      }
    }
    
    classEnumOne{
        publicstaticvoidmain(String[]args){
        System.out.println(AccountType.FIXED);
      }
    }
    

    输出结果:
    It is a account type
    It is a account type
    It is a account type
    FIXED
    枚举类 所有的枚举值都是类静态常量,在初始化时会对所有的枚举值对象进行第一次初始化。

    相关文章

      网友评论

          本文标题:枚举类初始化

          本文链接:https://www.haomeiwen.com/subject/oippsttx.html