java.time.YearMonth.parse() 方法示例



说明

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

声明

以下是 java.time.YearMonth.parse(CharSequence text) 方法的声明。

public static YearMonth parse(CharSequence text)

参数

text − 要解析的文本,例如 "2017-12",不能为空。

返回值

年月,不能为空。

异常

DateTimeParseException - 如果无法解析文本。

示例

下面的示例展示了 java.time.YearMonth.parse(CharSequence text) 方法的用法。

package com.tutorialspoint;

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
广告