亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java枚舉類型enum用法有哪些

小云
94
2023-08-30 12:32:57
欄目: 編程語言

Java中枚舉類型(enum)的用法有以下幾種:

  1. 定義枚舉類型:使用關鍵字"enum"定義枚舉類型,并在{}內列出枚舉常量。
enum Season {
SPRING, SUMMER, AUTUMN, WINTER
}
  1. 枚舉常量:枚舉類型中的每個常量都是枚舉類型的一個實例對象,可以通過常量名來訪問。
Season spring = Season.SPRING;
  1. 枚舉方法:枚舉類型可以定義自己的方法。
enum Season {
SPRING, SUMMER, AUTUMN, WINTER;
public void printSeason() {
System.out.println("This is " + this.name());
}
}
  1. 枚舉構造函數:枚舉類型可以有構造函數,并且只能在枚舉常量中調用。
enum Season {
SPRING("March to May"), SUMMER("June to August"), AUTUMN("September to November"), WINTER("December to February");
private String description;
Season(String description) {
this.description = description;
}
public String getDescription() {
return description;
}
}
  1. 自定義屬性和方法:枚舉類型可以有自定義的屬性和方法。
enum Season {
SPRING("March to May"), SUMMER("June to August"), AUTUMN("September to November"), WINTER("December to February");
private String description;
Season(String description) {
this.description = description;
}
public String getDescription() {
return description;
}
public static void printAllSeasons() {
for (Season season : Season.values()) {
System.out.println(season.getDescription());
}
}
}
  1. 使用switch語句:可以使用switch語句對枚舉類型進行匹配。
Season season = Season.SPRING;
switch (season) {
case SPRING:
System.out.println("It's spring");
break;
case SUMMER:
System.out.println("It's summer");
break;
case AUTUMN:
System.out.println("It's autumn");
break;
case WINTER:
System.out.println("It's winter");
break;
}

0
镇安县| 德钦县| 交口县| 安福县| 黑龙江省| 共和县| 垫江县| 右玉县| 玛多县| 宁化县| 水城县| 岳普湖县| 日照市| 瓮安县| 苏尼特左旗| 鹤峰县| 蒙阴县| 新宁县| 罗定市| 荔波县| 城口县| 石狮市| 辽宁省| 门源| 翁牛特旗| 铁力市| 博客| 郸城县| 平陆县| 石林| 邹平县| 沙河市| 金阳县| 富裕县| 浦北县| 新营市| 汶上县| 甘肃省| 海林市| 汝南县| 和平县|