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