Java中的 LocalDateTime withMinute() 方法及示例
Java中LocalDateTime 类的withMinute()方法用于获取此 LocalDateTime 的副本,其中分钟更改为作为参数传递给此方法的分钟。此 LocalDateTime 的其余值保持不变。
句法:
public LocalDateTime withMinute(int minutes)
参数:此方法接受一个强制参数minutes ,它指定要在结果 LocalDateTime 实例中设置的分钟数。此分钟的值可以在 0 到 59 之间。
返回:该函数返回一个LocalDateTime 实例,其中分钟更改为作为参数传递给此方法的分钟。此 LocalDateTime 的其余值保持不变。
异常:如果分钟值无效,该函数将引发DateTimeException 。
下面的程序说明了 LocalDateTime.withMinute() 方法:
方案一:
// Program to illustrate the withMinute() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Get the LocalDateTime instance
LocalDateTime dt = LocalDateTime.now();
// Get the String representation of this LocalDateTime
System.out.println("Original LocalDateTime: "
+ dt.toString());
// Get a new LocalDateTime with minutes 0
System.out.println("New LocalDateTime: "
+ dt.withMinute(0));
}
}
输出:
Original LocalDateTime: 2018-11-30T12:52:26.105
New LocalDateTime: 2018-11-30T12:00:26.105
方案二:
// Program to illustrate the withMinute() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Get the LocalDateTime instance
LocalDateTime dt
= LocalDateTime
.parse("2015-04-06T10:15:30");
// Get the String representation of this LocalDateTime
System.out.println("Original LocalDateTime: "
+ dt.toString());
// Get a new LocalDateTime with minutes 59
System.out.println("New LocalDateTime: "
+ dt.withMinute(59));
}
}
输出:
Original LocalDateTime: 2015-04-06T10:15:30
New LocalDateTime: 2015-04-06T10:59:30
参考: https: Java/time/LocalDateTime.html#withMinute(int)