|NO.Z.00082|——————————|BigDataEnd|——|Java&特殊類.V10|------------------------------------------------|Java.v10|列舉類|概念|自定義實現|
阿新 • • 發佈:2022-04-03
[BigDataJava:Java&特殊類.V10] [BigDataJava.面向物件] [|章節五|特殊類|列舉類的概念和自定義實現|]
一、列舉類的概念和自定義實現
二、程式設計程式碼### --- 列舉的基本概念 ~~~ ——> 一年中的所有季節:春季、夏季、秋季、冬季。 ~~~ ——> 所有的性別:男、女。 ~~~ ——> 鍵盤上的所有方向按鍵:向上、向下、向左、向右。 ~~~ ——> 在日常生活中這些事物的取值只有明確的幾個固定值, ~~~ ——> 此時描述這些事物的所有值都可以一一列舉出來,而這個列舉出來的型別就叫做列舉型別。
三、程式設計程式碼package com.yanqi.task10; /** * 程式設計實現所有方向的列舉,所有的方向:向上、向下、向左、向右 */ public class Direction { private final String desc; // 用於描述方向字串的成員變數 // 2.宣告本類型別的引用指向本類型別的物件 public static final Direction UP = new Direction("向上"); public static final Direction DOWN = new Direction("向下"); public static final Direction LEFT = new Direction("向左"); public static final Direction RIGHT = new Direction("向右"); // 通過構造方法實現成員變數的初始化,更加靈活 // 1.私有化構造方法,此時該構造方法只能在本類的內部使用 private Direction(String desc) { this.desc = desc; } // 通過公有的get方法可以在本類的外部訪問該類成員變數的數值 public String getDesc() { return desc; } }
四、編譯列印package com.yanqi.task10; public class DirectionTest { public static void main(String[] args) { /*// 1.宣告Direction型別的引用指向該型別的物件並列印特徵 Direction d1 = new Direction("向上"); System.out.println("獲取到的字串是:" + d1.getDesc()); // 向上 Direction d2 = new Direction("向下"); System.out.println("獲取到的字串是:" + d2.getDesc()); // 向下 Direction d3 = new Direction("向左"); System.out.println("獲取到的字串是:" + d3.getDesc()); // 向左 Direction d4 = new Direction("向右"); System.out.println("獲取到的字串是:" + d4.getDesc()); // 向右 System.out.println("-------------------------------------"); Direction d5 = new Direction("向前"); System.out.println("獲取到的字串是:" + d5.getDesc()); // 向前*/ //Direction.UP = 2; Error:型別不匹配 //Direction d2 = null; //Direction.UP = d2; Error: final關鍵字修飾 Direction d1 = Direction.UP; System.out.println("獲取到的方向是:" + d1.getDesc()); // 向上 System.out.println("-------------------------------------"); // 使用一下Java5開始的列舉型別 DirectionEnum de = DirectionEnum.DOWN; System.out.println("獲取到的方向是:" + de.getDesc()); // 向下 } }
D:\JAVA\jdk-11.0.2\bin\java.exe "-javaagent:D:\IntelliJIDEA\IntelliJ IDEA 2019.3.3\lib\idea_rt.jar=54403:D:\IntelliJIDEA\IntelliJ IDEA 2019.3.3\bin" -Dfile.encoding=UTF-8 -classpath E:\NO.Z.10000——javaproject\NO.H.00001.javase\javase\out\production\javase com.yanqi.task10.DirectionTest
獲取到的方向是:向上
-------------------------------------
獲取到的方向是:向下
Process finished with exit code 0
===============================END===============================
Walter Savage Landor:strove with none,for none was worth my strife.Nature I loved and, next to Nature, Art:I warm'd both hands before the fire of life.It sinks, and I am ready to depart ——W.S.Landor
來自為知筆記(Wiz)