Java中的 MonthDay now(ZoneId) 方法和示例
Java中MonthDay类的now(ZoneId zone)方法用于从指定时区的系统时钟中获取当前月日。
句法:
public static MonthDay now(ZoneId zone)
参数:此方法接受ZoneId作为参数。
返回值:该方法使用系统时钟返回当前月日。
下面的程序说明了Java中 MonthDay 的 now(ZoneId zone) 方法:
方案一:
// Java program to demonstrate
// MonthDay.now(ZoneId zone) method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// apply now(ZoneId zone) method
// of MonthDay class
MonthDay result = MonthDay.now(
ZoneId.systemDefault());
// print both month and day
System.out.println("MonthDay: "
+ result);
}
}
输出:
MonthDay: --05-09
方案二:
// Java program to demonstrate
// MonthDay.now(ZoneId zone) method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// apply now(ZoneId zone) method
// of MonthDay class
MonthDay result = MonthDay.now(
ZoneId.systemDefault());
// print only month
System.out.println("Month: "
+ result.getMonth());
}
}
输出:
Month: MAY
参考资料: https: Java Java.time.ZoneId)