java.time.MonthDay.format() 方法
描述
java.time.MonthDay.format(DateTimeFormatter formatter) 方法使用指定的格式化程序格式化这个月-日。
声明
以下是 java.time.MonthDay.format(DateTimeFormatter formatter) 方法的声明。
public String format(DateTimeFormatter formatter)
参数
formatter − 要使用的格式化程序,而不是 null。
返回值
格式化的日期字符串,不为空。
异常
DateTimeException − 如果在打印过程中发生错误。
示例
下面的例子展示了 java.time.MonthDay.format(DateTimeFormatter formatter) 方法的使用。
package com.tutorialspoint; import java.time.MonthDay; import java.time.format.DateTimeFormatter; public class MonthDayDemo { public static void main(String[] args) { MonthDay date = MonthDay.parse("--12-30"); System.out.println(date); DateTimeFormatter formatter = DateTimeFormatter.ofPattern("--MM-dd"); System.out.println(formatter.format(date)); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
--12-30 --12-30