Java中的 MonthDay from() 方法和示例
Java中MonthDay 类的from()方法从时间对象中获取 MonthDay 的实例。
句法:
public static MonthDay from(TemporalAccessor temporal)
参数:此方法接受一个参数temporal ,该参数指定要转换的时间对象,该对象不为空。
返回:该函数返回本地日期而不是 null。
异常:如果函数无法转换为 MonthDay,则抛出DateTimeException 。
下面的程序说明了MonthDay.from()方法:
方案一:
// Program to illustrate the from() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
MonthDay date
= MonthDay.from(ZonedDateTime.now());
System.out.println(date);
}
}
输出:
--12-06
方案二:
// Program to illustrate the from() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
MonthDay date = MonthDay.from(ZonedDateTime.now());
System.out.println(date);
}
}
输出:
--12-06
参考: https: Java/time/MonthDay.html#from-java.time.temporal.TemporalAccessor-