本篇內(nèi)容介紹了“Java靜態(tài)初始化與枚舉類型舉例分析”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)建站!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、成都小程序開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了平房免費建站歡迎大家使用!
結(jié)論:靜態(tài)初始化執(zhí)行且僅執(zhí)行一次(當(dāng)首次生成這個類的一個對象時,或首次訪問屬于這個類的靜態(tài)數(shù)據(jù)成員時(即便未生成過那個類的對象))。
證明:見代碼((1)和(2)需注釋一個)與結(jié)果圖
class Cup { Cup(int marker) { System.out.println("Cup(" + marker + ")");}void f(int marker) { System.out.println("f(" + marker + ")");}}class Cups { static Cup cup1;static Cup cup2;static { cup1 = new Cup(1);cup2 = new Cup(2);}Cups() { System.out.println("Cpus()"); //(1)//Cups cpus1 = new Cups(); //(2)}}public class Test2 { public static void main(String[] args) { Cups.cup1.f(99);}}
注釋(2):
注釋(1):
1.枚舉類型(enum)概述:enum不是一種數(shù)據(jù)類型,而是一個類,并且具有自己的方法。例如,創(chuàng)建一個名未Spiciness的枚舉類型,它具有5個具名值,由于枚舉類型的實例是常量,因此按照慣例都用大寫字母表示,如果一個具名值的名字中有多個單詞,用下劃線分隔。
enum Spiciness { NOT, MILD, MEDIUM, HOT, FLAMING}public class Test2 { public static void main(String[] args) { Spiciness howHot = Spiciness.MEDIUM;System.out.println(howHot);}}
輸出結(jié)果:
2.枚舉類型的方法特性:
(1)自動重寫toString()方法,以便更方便地顯示某個enum實例的名字。
(2)自動創(chuàng)建ordinal()方法,用來顯示某個特定enum常量的聲明順序。
(3)自動創(chuàng)建static values()方法,用來按照enum常量的聲明順序,產(chǎn)生由這些常量值構(gòu)成的數(shù)組。
enum Spiciness { NOT, MILD, MEDIUM, HOT, FLAMING}public class Test2 { public static void main(String[] args) { for (Spiciness s : Spiciness.values()) { System.out.println(s + ", ordinal " + s.ordinal());}}}
3.枚舉類型結(jié)合switch:
由于switch是要在有限的可能值集合中進(jìn)行選擇,因此它與enum正是絕佳的組合。
enum Spiciness { NOT, MILD, MEDIUM, HOT, FLAMING}class Burrito { Spiciness degree;public Burrito(Spiciness degree) { this.degree = degree;}public void describe() { System.out.print("This burrito is");switch (degree) { case NOT:System.out.println("not spicy at all.");break;case MILD:System.out.println("a little hot.");break;case HOT:case FLAMING:default:System.out.println("maybe too hot");}}}public class Test2 { public static void main(String[] args) { Burrito plain = new Burrito(Spiciness.NOT),greenChile = new Burrito(Spiciness.MEDIUM);plain.describe();greenChile.describe();}}
輸出結(jié)果:
“Java靜態(tài)初始化與枚舉類型舉例分析”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!