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


Java Year length()用法及代码示例


Java中Year类的length()方法用于返回今年对象的值的天数长度。年的长度可能只有两种,即365(非le年)和366(Le年)。

用法

public int length()

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


返回值:它返回一个整数值,以天数表示Year的长度。

以下程序说明了Java中Year的length()方法:
示例1:

// Program to illustrate the length() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Create a Year object 
        Year thisYear = Year.of(2016); 
  
        // Print the length of this year in Number 
        // of days, 366 in this case as 2016 is 
        // a Leap Year 
        System.out.println(thisYear.length()); 
    } 
}
输出:
366

示例2:

// Program to illustrate the length() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Create a Year object 
        Year thisYear = Year.of(1990); 
  
        // Print the length of this year in Number 
        // of days, 365 in this case as 1990 is not 
        // a Leap Year 
        System.out.println(thisYear.length()); 
    } 
}
输出:
365

参考: https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#length-



相关用法


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