今天接触枚举类型,感觉是C里面应该才有的东西

遍历枚类型的方法:	
public static EActChannel getEnumByCode(int code) { for (EActChannel enm : EActChannel.values()) { if (code == enm.getCode()) { return enm; } } return null; }

  

posted @ 2016-09-29 18:09  余***龙  阅读(155)  评论(0编辑  收藏  举报