Java DateFormatSymbols getMonths()方法及示例

Java DateFormatSymbols getMonths()方法及示例

Java中 DateFormatSymbols类getMonths() 方法是用来获取字符串格式的日历月份名称的。

语法

public String[] getMonths()

参数: 该方法不接受任何参数。

返回值: 该方法以字符串格式返回月份的名称。

下面的程序说明了getMonths()方法的使用。

例1 :

// Java code to demonstrate getMonths()
  
import java.text.DateFormatSymbols;
  
public class DateFormat_Main {
    public static void main(String args[])
    {
        int i;
  
        // Initializing DateFormatSymbols
        String months[]
            = new DateFormatSymbols().getMonths();
  
        for (i = 0; i < months.length - 1; i++) {
  
            // Displaying the months
            System.out.println("Month = "
                               + months[i]);
        }
    }
}

输出:

Month = January
Month = February
Month = March
Month = April
Month = May
Month = June
Month = July
Month = August
Month = September
Month = October
Month = November
Month = December

例2 :

// Java code to demonstrate getMonths()
  
import java.text.DateFormatSymbols;
  
public class DateFormat_Main {
    public static void main(String args[])
    {
  
        int i;
  
        // Initializing DateFormatSymbols
        String months[]
            = new DateFormatSymbols().getMonths();
  
        for (i = 0; i < months.length / 2; i++) {
  
            // Displaying the months
            System.out.println("Month " + i
                               + " = " + months[i]);
        }
    }
}

输出:

Month 0 = January
Month 1 = February
Month 2 = March
Month 3 = April
Month 4 = May
Month 5 = June

参考资料: https://docs.oracle.com/javase/8/docs/api/java/text/DateFormatSymbols.html#getMonths-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程