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

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

Java中的 MonthDay getDayOfMonth() 方法及示例

Java中MonthDay 类getDayOfMonth()方法获取日期字段。

句法:

public int getDayOfMonth()

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

返回:该函数返回从 1 到 31 的日期。

下面的程序说明了MonthDay.getDayOfMonth()方法:

方案一:

// Program to illustrate the getDayOfMonth() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        MonthDay tm1 = MonthDay.parse("--12-06");
  
        // Uses the function
        LocalDate dt1 = tm1.atYear(2018);
  
        // Prints the day
        System.out.println(dt1.getDayOfMonth());
    }
}
输出:
6

方案二:

// Program to illustrate the getDayOfMonth() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        MonthDay tm1 = MonthDay.parse("--01-19");
  
        // Uses the function
        LocalDate dt1 = tm1.atYear(2018);
  
        // Prints the day
        System.out.println(dt1.getDayOfMonth());
    }
}
输出:
19

参考: https: Java/time/MonthDay.html#getDayOfMonth–