java.time.LocalDate with()方法
java.time.LocalDate.with(TemporalAdjuster adjuster)方法返回此日期的调整副本。
1 语法
public LocalDate with(TemporalAdjuster adjuster)
2 参数
adjuster:要使用的调整器,而不是null。
3 返回值
基于此的LocalDate进行调整,而不是null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.LocalDate with()方法
*/
import java.time.LocalDate;
import java.time.Month;
import java.time.temporal.TemporalAdjusters;
public class LocalDateDemo {
public static void main(String[] args) {
LocalDate date = LocalDate.parse("2017-01-03");
LocalDate result = date.with(Month.JULY).with(TemporalAdjusters.lastDayOfMonth());
System.out.println(result);
}
}
输出结果为:
2017-07-31
热门文章
优秀文章