当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。