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


Java YearMonth atDay()用法及代碼示例


Java中YearMonth類的atDay()方法將當前的year-month與作為參數傳遞給它的day-of-month組合在一起,以創建LocalDate。

用法

public LocalDate atDay(int dayOfMonth)

參數:此方法接受單個參數dayOfMonth。使用的是day-of-month。取值範圍是1到31。


返回值:它返回由當前year-month形成的本地日期和作為參數傳遞給函數的月份中的一天。

異常:如果參數中傳遞的月份中的日期無效,則此方法將引發DateTimeException。

以下程序說明了Java中YearMonth的atDay()方法:
示例1:

// Programt to illustrate the atDay() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Creates a YearMonth object 
        YearMonth thisYearMonth = YearMonth.of(2017, 8); 
  
        // Creates a local date with this 
        // YearMonth object and day passed to it 
        LocalDate date = thisYearMonth.atDay(31); 
  
        System.out.println(date); 
    } 
}
輸出:
2017-08-31

示例2::說明異常。下麵的程序引發異常,因為9月是30天而不是31天。

// Programt to illustrate the atDay() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Creates a YearMonth object 
        YearMonth thisYearMonth = YearMonth.of(2017, 9); 
  
        try { 
            // Creates a local date with this 
            // YearMonth object and day passed to it 
            LocalDate date = thisYearMonth.atDay(31); 
  
            System.out.println(date); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
輸出:
java.time.DateTimeException: Invalid date 'SEPTEMBER 31'

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



相關用法


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