/**
*列舉結合switch的使用
* jdk7版本前switch只能使用char、int型做對比引數,
* 因此在某些情況下需引入列舉結合switch使用
* @author rsun
* @date 2012-2-28下午10:42:54
*/public class enumtest
public static void main(string args)
/** 在switch中使用列舉 **/
public string setmsenum()
return str.tostring();
}
}/*** 建立乙個列舉
* 因列舉型別的例項都是常量,因此都採用大寫
* * @author rsun
* @date 2012-2-28下午10:49:28
*/enum msenum
列舉enum在switch中的用法
實際開發中,很多人可能很少用列舉型別。更多的可能使用常量的方式代替。但列舉比起常量來說,含義更清晰,更容易理解,結構上也更加緊密。列舉類 public enum democode public intgetcode public void setcode int code public string...
C資料型別 列舉 enum 和switch語句
main.m lessoncondition created by lanouhn on 14 7 16.import 列舉型別是乙個構造型別,它使一組整型常量羅列出了有的可能性 定義列舉,使用關鍵字enum 列舉型別的名字 最後的分號不能少 列舉型別將人能夠識別的識別符和計算機能夠識別的數字對應起...
C資料型別 列舉enum 和switch語句
main.m lessoncondition created by lanouhn on 14 7 16.copyright c 2014年 vaercly 163.com 陳聰雷.all rights reserved.import 列舉型別是乙個構造型別,它使一組整型常量羅列出了有的可能性 定義...