当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。