Java中的 ChronoZonedDateTime from() 方法及示例
Java方法中ChronoZonedDateTime接口的from()方法从时间对象中获取 ChronoZonedDateTime 的实例。
语法:
static ChronoZonedDateTime
from(TemporalAccessor temporal)
参数:此方法接受一个参数temporal ,该参数指定要转换的时间对象,而不是 null。
返回值:它返回 ChronoZonedDateTime 而不是 null。
异常:该函数仅抛出DateTimeException ,如果它无法将其转换为 ChronoZonedDateTime,则会发生这种情况。
下面的程序说明了Java中 ChronoZonedDateTime 的 from() 方法:
注意:每次运行时输出都会改变。
// Program to illustrate the from() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
ChronoZonedDateTime dt
= ZonedDateTime.from(ZonedDateTime.now());
System.out.println(dt);
}
}
输出:
2019-05-26T12:36:04.419Z[Etc/UTC]
参考:https://docs.oracle.com/javase/9/docs/api/ Java/time/chrono/ChronoZonedDateTime.html#from-java.time.temporal.TemporalAccessor-