当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ChronoPeriod get()用法及代码示例


Java中ChronoPeriod接口的get()方法用于从此ChronoPeriod中获取自变量中指定的请求单位(YEARS,MONTHS或DAYS)的值。

用法:

long get(TemporalUnit unit)

参数:此方法接受类型为TemporalUnit的单个参数uint,这是获取所需单位的单位。


返回值:此函数返回所请求单位的long值。

异常:

  • DateTimeException-如果不支持参数中的单位,则此方法将引发DateTimeException。
  • UnsupportedTemporalTypeException-如果不支持参数中给定的单位,则此方法将引发UnsupportedTemporalTypeException。

以下示例程序旨在说明上述方法:

程序1:

// Java code to show the function get() 
// which gives the requested unit 
  
import java.time.*; 
import java.time.chrono.*; 
import java.time.temporal.ChronoUnit; 
  
public class ChronoPeriodDemo { 
  
    // Function to get requested unit 
    static void getUnit(int year, int months, int days) 
    { 
        ChronoPeriod 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.*; 
import java.time.chrono.*; 
import java.time.temporal.ChronoUnit; 
  
public class ChronoPeriodDemo { 
  
    // Function to get requested unit 
    static void getUnit(int year, int months, int days) 
    { 
        ChronoPeriod 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

参考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoChronoPeriod.html#get-java.time.temporal.TemporalUnit-



相关用法


注:本文由纯净天空筛选整理自srinam大神的英文原创作品 ChronoPeriod get() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。