java.time.MonthDay.parse(CharSequence text)
方法從文字字串(例如 - 10-15
)獲取MonthDay的範例。
以下是java.time.MonthDay.parse(CharSequence text)
方法的宣告。
public static MonthDay parse(CharSequence text)
text
- 要解析的文字,例如"--10-15"
,而不是null
。當地的月日,不是null
。
DateTimeParseException
- 如果無法解析文字。以下範例顯示了java.time.MonthDay.parse(CharSequence text)
方法的用法。
package com.yiibai;
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