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


Java Month getDisplayName()用法及代码示例


getDisplayName()方法是本月ENUM的内置方法,用于获取由本月实例指定的month-of-year的文本表示形式。

用法

public String getDisplayName(TextStyle style,
                             Locale locale)

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


  • style:此参数指定要使用的文本的样式或长度,即短,长等。
  • 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-



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Month getDisplayName() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。