當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。