Java MonthDay from()方法及示例
Java中MonthDay类的 from() 方法从一个时间对象中获取MonthDay的一个实例。
语法
public static MonthDay from(TemporalAccessor temporal)
参数。该方法接受一个参数temporal,它指定了要转换的时间对象,该对象不是空的。
返回: 该函数返回本地日期,而不是null。
异常 :如果不能转换为MonthDay,该函数会抛出 DateTimeException 。
以下程序说明了 MonthDay.from() 方法。
程序1 :
// 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
程序2
// 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://docs.oracle.com/javase/8/docs/api/java/time/MonthDay.html#from-java.time.temporal.TemporalAccessor-