Java中的 LocalDate getDayOfMonth() 方法
Java中 LocalDate 类的 getDayOfMonth() 方法获取日期字段。
语法:
public int getDayOfMonth()
参数:此方法不接受任何参数。
返回值:该函数返回月份中的日期,范围为 1-31。
下面的程序说明了Java中 LocalDate 的getDayOfMonth()方法:
程序 1 :
// Program to illustrate the getDayOfMonth() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
LocalDate dt = LocalDate.parse("2018-11-27");
System.out.println(dt.getDayOfMonth());
}
}
输出:
27
方案二:
// Program to illustrate the getDayOfMonth() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
LocalDate dt = LocalDate.parse("2018-01-01");
System.out.println(dt.getDayOfMonth());
}
}
输出:
1
参考:https: Java/time/LocalDate.html#getDayOfMonth()