java.time.Year atMonth()方法

java.time.Year.atMonth(int) 方法将当前year对象与作为参数传递给月份的month结合起来以创建YearMonth对象。

1 语法

public YearMonth atMonth(int month)

2 参数

month:这是一年中的月份。它采用1到12之间的整数值,并且不能为NULL。

3 返回值

返回由当前年份对象和作为参数传递给函数的有效月份组成的YearMonth对象。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.Year atMonth()方法
 */
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

 

热门文章

优秀文章