Java Period get()方法及示例

Java Period get()方法及示例

Java中Period类的get()方法用于从这个Period中获取参数中给出的请求单位(年、月或日)的值。

语法

public long get(TemporalUnit unit)

参数: 该方法接受一个TemporalUnit类型的单参数单位,它是获得所需单位的单位。

返回值: 该函数返回所要求的单位的长值。

异常情况

  • DateTimeException – 如果参数中的单位不被支持,该方法会抛出DateTimeException。
  • UnsupportedTemporalTypeException – 如果参数中的单位不被支持,该方法会抛出UnsupportedTemporalTypeException。

下面的程序说明了上述方法。

程序1 :

// Java code to show the function get()
// which gives the requested unit
import java.time.Period;
import java.time.temporal.ChronoUnit;
  
public class PeriodDemo {
  
    // Function to get requested unit
    static void getUnit(int year, int months, int days)
    {
        Period period = Period.of(year, months, days);
        System.out.println(period.get(ChronoUnit.DAYS));
    }
  
    // Driver Code
    public static void main(String[] args)
    {
  
        int year = 8;
        int months = 5;
        int days = 25;
  
        getUnit(year, months, days);
    }
}

输出:

25

程序2

// Java code to show the function get()
// which gives the requested unit
import java.time.Period;
import java.time.temporal.ChronoUnit;
  
public class PeriodDemo {
  
    // Function to get requested unit
    static void getUnit(int year, int months, int days)
    {
        Period period = Period.of(year, months, days);
        System.out.println(period.get(ChronoUnit.YEARS));
    }
  
    // Driver Code
    public static void main(String[] args)
    {
  
        int year = 11;
        int months = 3;
        int days = 21;
  
        getUnit(year, months, days);
    }
}

输出:

11

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程