📜  Java中的 from() 方法和示例

📅  最后修改于: 2022-05-13 01:55:16.783000             🧑  作者: Mango

Java中的 from() 方法和示例

Year类的from()方法用于从作为参数传递的 TemporalAccessor 对象中获取 Year 的实例。 TemporalAccessor 表示任意日期和时间信息集,此方法有助于根据指定的 TemporalAccessor 对象获取年份对象。

句法:

public static Year from(TemporalAccessor temporal)

参数:此方法接受时间作为参数,即时间对象。它不应该为空。

返回值:该方法返回年份对象。

异常:此方法抛出以下异常:

  • DateTimeException – 如果无法转换为年份。

下面的程序说明了 from() 方法:
方案一:

// Java program to demonstrate
// Year.from() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a temporal object
        LocalDate date = LocalDate.parse("2007-12-03");
  
        // print instance
        System.out.println("LocalDate :"
                           + date);
  
        // apply from method of Year class
        Year year = Year.from(date);
  
        // print instance
        System.out.println("Year get from"
                           + " method: "
                           + year);
    }
}
输出:
LocalDate :2007-12-03
Year get from method: 2007

方案二:

// Java program to demonstrate
// Year.from() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // create a temporal object
        LocalDate ins = LocalDate.parse("2018-11-27");
  
        // print instance
        System.out.println("LocalDate :"
                           + ins);
  
        // apply from method of Year class
        Year year = Year.from(ins);
  
        // print instance
        System.out.println("Year get from"
                           + " method: "
                           + year);
    }
}
输出:
LocalDate :2018-11-27
Year get from method: 2018

参考文献: https: Java Java)