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



说明

java.time.MonthDay.parse(CharSequence text) 方法从一个文本字符串(例如 --10-15)获取一个 MonthDay 实例。

声明

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

public static MonthDay parse(CharSequence text)

参数

text - 要解析的文本(例如 “--10-15”),非空。

返回值

本地区间的一天,非空。

异常

DateTimeParseException - 如果无法解析文本。

示例

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

package com.tutorialspoint;

import java.time.MonthDay;

public class MonthDayDemo {
   public static void main(String[] args) {
 
      MonthDay time = MonthDay.parse("--10-15");
      System.out.println(time);  
   }
}

让我们编译并运行上面的程序,它将产生以下结果 -

--10-15
广告