java.time.YearMonth parse()方法

java.time.Year.parse(CharSequence text)方法从文本字符串(如2017-12)获取YearMonth的实例。

1 语法

public static YearMonth parse(CharSequence text)

2 参数

text:要解析的文本,例如"2017-12",而不是null。

3 返回值

年月值,不是null。

4 示例 

package com.yiidian;

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

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

      YearMonth date = YearMonth.parse("2017-12");
      System.out.println(date);  
   }
}

输出结果为:

2017-12

 

热门文章

优秀文章