TemporalAdjusters类的lastDayOfMonth()方法用于返回“每月的最后一天” TemporalAdjuster对象,该对象返回设置为该月最后一天的新Date对象。
用法:
public static TemporalAdjuster lastDayOfMonth()
参数:此方法不接受任何内容。
返回值:此方法返回月份的最后一天调节器,而不是null。
以下示例程序旨在说明TemporalAdjusters.lastDayOfMonth()方法:
程序1:
// Java program to demonstrate
// TemporalAdjusters.lastDayOfMonth()
import java.time.LocalDate;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// get TemporalAdjuster with last day
// of the month adjuster
TemporalAdjuster temporalAdjuster
= TemporalAdjusters.lastDayOfMonth();
// using adjuster for local date-time
LocalDate localDate
= LocalDate.of(2020, 05, 11);
LocalDate lastDayOfMonth
= localDate.with(temporalAdjuster);
// print
System.out.println("last day of the "
+ "month for localdate "
+ localDate + ":"
+ lastDayOfMonth);
}
}
输出:
last day of the month for localdate 2020-05-11:2020-05-31
程序2:
// Java program to demonstrate
// TemporalAdjusters.lastDayOfMonth() method
import java.time.LocalDate;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// get TemporalAdjuster with last day
// of the month adjuster
TemporalAdjuster temporalAdjuster
= TemporalAdjusters
.lastDayOfMonth();
// using adjuster for local date-time
LocalDate localDate
= LocalDate.of(2010, 12, 29);
LocalDate lastDayOfMonth
= localDate.with(temporalAdjuster);
// print
System.out.println("last day of the "
+ "month for localdate "
+ localDate + ":"
+ lastDayOfMonth);
}
}
输出:
last day of the month for localdate 2010-12-29:2010-12-31
参考文献:https://docs.oracle.com/javase/10/docs/api/java/time/format/TemporalAdjusters.html
相关用法
- Java TemporalAdjusters next()用法及代码示例
- Java TemporalAdjusters previous()用法及代码示例
- Java TemporalAdjusters nextOrSame()用法及代码示例
- Java TemporalAdjusters firstDayOfNextYear()用法及代码示例
- Java TemporalAdjusters firstDayOfYear()用法及代码示例
- Java TemporalAdjusters previousOrSame()用法及代码示例
- Java TemporalAdjusters lastDayOfYear()用法及代码示例
- Java TemporalAdjusters lastInMonth()用法及代码示例
- Java TemporalAdjusters firstInMonth()用法及代码示例
- Java TemporalAdjusters firstDayOfNextMonth()用法及代码示例
- Java TemporalAdjusters firstDayOfMonth()用法及代码示例
- Java Java lang.Long.numberOfLeadingZeros()用法及代码示例
- Java Java lang.Long.highestOneBit()用法及代码示例
- Java Java lang.Long.builtcount()用法及代码示例
- Java Java lang.Long.reverse()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 TemporalAdjusters lastDayOfMonth() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。