码迷,mamicode.com
首页 > 其他好文 > 详细

枚举练习

时间:2019-07-30 12:52:27      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:图片   this   color   eve   大数据   display   inf   挖掘   架构师   

技术图片
package jul30;

public enum KeCheng {
    L1("大数据开发工程师"),L2("大数据挖掘工程师"),L3("大数据架构师");
    
    private String str;
    
    public String getStr() {return str;}

    public void setStr(String str) {this.str = str;}

    KeCheng(String str) {this.str =str;}
}
枚举类

技术图片

 

枚举练习

标签:图片   this   color   eve   大数据   display   inf   挖掘   架构师   

原文地址:https://www.cnblogs.com/zeng1997/p/11269097.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!