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


Java Year atMonth(int)用法及代碼示例


Java中Year類的atMonth(int)方法將當前year對象與作為參數傳遞給月份的month結合起來以創建YearMonth對象。

用法

public YearMonth atMonth(int month)

參數:此方法接受單個參數month。使用的是month-of-year。它采用1到12之間的整數值,並且不能為NULL。


返回值:它返回由當前年份對象和作為參數傳遞給函數的有效月份組成的YearMonth對象。

異常:如果作為參數傳遞給它的月份無效,則此方法將引發DateTimeException。

以下程序說明了Java中Year的atMonth(int)方法:
示例1:

// Program to illustrate the atMonth(int) method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Creates a Year object 
        Year thisYear = Year.of(2017); 
  
        // Creates a YearMonth with this 
        // Year object and Month passed to it 
        YearMonth yearMonth = thisYear.atMonth(4); 
  
        System.out.println(yearMonth); 
    } 
}
輸出:
2017-04

示例2::說明異常。

// Program to illustrate the atMonth(int) method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Creates a Year object 
        Year thisYear = Year.of(2018); 
  
        try { 
            // Creates a YearMonth with this 
            // Year object and Month passed to it 
            YearMonth yearMonth = thisYear.atMonth(16); 
  
            System.out.println(yearMonth); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
輸出:
java.time.DateTimeException: Invalid value for MonthOfYear (valid values 1 - 12): 16

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



相關用法


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