java.time.MonthDay from()方法
java.time.MonthDay.from(TemporalAccessor temporal)方法从temporal对象获取MonthDay的实例。
1 语法
public static MonthDay from(TemporalAccessor temporal)
2 参数
temporal:要转换的时间对象,不能为null。
3 返回值
本地日期,不能为null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.MonthDay from()方法
*/
import java.time.MonthDay;
import java.time.ZonedDateTime;
public class MonthDayDemo {
public static void main(String[] args) {
MonthDay date = MonthDay.from(ZonedDateTime.now());
System.out.println(date);
}
}
输出结果为:
--12-26
热门文章
优秀文章