📌  相关文章
📜  Java中的 DateFormatSymbols getMonths() 方法及示例

📅  最后修改于: 2022-05-13 01:55:39.319000             🧑  作者: Mango

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: Java/text/DateFormatSymbols.html#getMonths–