當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Java Enum toString()用法及代碼示例

Enum類toString()方法

  • toString() 方法可在java.lang包。
  • toString() 方法用於檢索在枚舉聲明中聲明的枚舉常量的名稱。
  • toString() 方法類似於 Enum 類的 name() 方法,但 toString() 主要由程序員使用,與 Enum 類的 name() 方法相比更難。
  • toString() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • toString() 方法在將對象轉換為字符串時不會拋出異常。

用法:

    public String toString();

參數:

  • 它不接受任何參數。

返回值:

這個方法的返回類型是String,它代表這個枚舉常量的名稱。

例:

// Java program to demonstrate the example 
// of String toString() method of Enum 

enum Month {
    JAN,
    FEB,
    MAR,
    APR,
    MAY;
}

public class ToString {
    public static void main(String args[]) {

        Month m1 = Month.JAN;
        Month m2 = Month.FEB;
        Month m3 = Month.MAR;
        Month m4 = Month.APR;
        Month m5 = Month.MAY;

        System.out.println("Display String Representation:");

        // By using toString() method is to return the name of
        //enum constant in its enum definition 
        System.out.println("m1.toString() " + " " + m1.toString());
        System.out.println("m2.toString()" + " " + m2.toString());
        System.out.println("m3.toString()" + " " + m3.toString());
        System.out.println("m4.toString()" + " " + m4.toString());
        System.out.println("m5.toString()" + " " + m5.toString());
    }
}

輸出

Display String Representation:
m1.toString()  JAN
m2.toString() FEB
m3.toString() MAR
m4.toString() APR
m5.toString() MAY


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Enum toString() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。