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


Java Year of()用法及代碼示例


Java中Year類的of()方法用於返回Year實例。它根據通用的ISO日曆係統接受年份,並返回帶有指定isoYear的Year實例。

用法

public static Year of(int isoYear)

參數:根據ISO ISO日曆係統,它接受單個整數值isoYear作為唯一參數。


返回值:返回Year的一個實例。

異常:如果根據有效的ISO日曆係統發現作為參數傳遞的年份無效,則將引發DateTimeException。

以下程序說明了Java中Year的length()方法:

示例1:

// Program to illustrate the of() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Create a valid Year object 
        // using of() method 
        Year thisYear = Year.of(2018); 
  
        // Print the year object 
        System.out.println(thisYear); 
    } 
}
輸出:
2018

示例2:

// Program to illustrate the of() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Create a valid Year object 
        // using of() method 
        Year thisYear = Year.of(1997); 
  
        // Print the year object 
        System.out.println(thisYear); 
    } 
}
輸出:
1997

參考: https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#of-int-



相關用法


注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 Year of() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。