Java month getDisplayName()方法

Java month getDisplayName()方法

getDisplayName() 方法是Month ENUM的一个内置方法,用于获取这个Month实例所指定的年份月份的文本表示。

语法:

public String getDisplayName(TextStyle style,
                             Locale locale)

参数 :该方法接受两个参数,如下所述。

  • style : 这个参数指定了要使用的文本的样式或长度,即短、长等。
  • locale : 这个参数指定要使用的locale。

返回值 :该方法返回这个Month实例所指定的月份的文本表示。

下面的程序说明了上述方法。

程序1 :

import java.time.*;
import java.time.Month;
import java.time.format.TextStyle;
import java.util.Locale;
  
class monthEnum {
    public static void main(String[] args)
    {
        // Create a month instance
        Month month = Month.of(3);
  
        // Generate textual representation
        System.out.println(month.getDisplayName(TextStyle.SHORT,
                                                Locale.ENGLISH));
    }
}

输出。

Mar

程序2 :

import java.time.*;
import java.time.Month;
import java.time.format.TextStyle;
import java.util.Locale;
  
class monthEnum {
    public static void main(String[] args)
    {
        // Create a month instance
        Month month = Month.of(12);
  
        // Generate textual representation
        System.out.println(month.getDisplayName(TextStyle.SHORT,
                                                Locale.ENGLISH));
    }
}

输出。

Dec

参考资料 : https://docs.oracle.com/javase/8/docs/api/java/time/Month.html#getDisplayName-java.time.format.TextStyle-java.util.Locale-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程