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


Java Period getYears()用法及代码示例


Java中的Period的getYears()方法用于获取该周期使用的年数。

注意:15个月不等于1年3个月。

用法:


public List getYears()

参数:此方法不接受任何参数。

返回值:此方法返回当前期间的年数。

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

程序1

// Java code to show the function getYears() 
// to get the number of years in the period 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodDemo { 
  
    // Function to get the number of years 
    static void getNumberOfDays(int year, int months, int days) 
    { 
        Period period = Period.of(year, months, days); 
        System.out.println(period.getYears()); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
  
        int year = 12; 
        int months = 3; 
        int days = 31; 
  
        getNumberOfDays(year, months, days); 
    } 
}
输出:
12

程序2

// Java code to show the function getYears() 
// to get the number of years in the period 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodDemo { 
  
    // Function to get the number of years 
    static void getNumberOfDays(int year, int months, int days) 
    { 
        Period period = Period.of(year, months, days); 
        System.out.println(period.getYears()); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
  
        int year = -12; 
        int months = 3; 
        int days = 31; 
  
        getNumberOfDays(year, months, days); 
    } 
}
输出:
-12

参考: https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#getYears–



相关用法


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