java.time.YearMonth from()方法

java.time.Year.from(TemporalAmount amount)方法从时间量获取YearMonth的实例。

1 语法

public static YearMonth from(TemporalAmount amount)

2 参数

amount:要转换的时间量,而不是null。

3 返回值

等效的YearMonth,不是null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.YearMonth from()方法
 */
import java.time.YearMonth;

public class YearMonthDemo {
   public static void main(String[] args) {

      YearMonth date = YearMonth.from(YearMonth.of(2017,12));
      System.out.println(date);
   }
}

输出结果为:

2017-12

 

热门文章

优秀文章