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


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


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

用法

public YearMonth atMonth(Month month)

參數:此方法接受單個參數month。使用的是month-of-year。它需要一個有效的Month對象,並且不能為NULL。


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

以下示例程序旨在說明Java中Year的atMonth(Month month)方法:
程序1:

// Program to illustrate the atMonth(Month) 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(Month.SEPTEMBER); 
  
        System.out.println(yearMonth); 
    } 
}
輸出:
2017-09

程序2:

// Program to illustrate the atMonth(Month) 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); 
  
        // Creates a YearMonth with this 
        // Year object and Month passed to it 
        YearMonth yearMonth = thisYear.atMonth(Month.JANUARY); 
  
        System.out.println(yearMonth); 
    } 
}
輸出:
2018-01

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



相關用法


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