Java中LocalDateTime類的withMonth()方法用於獲取此LocalDateTime的副本,並將月份更改為作為此方法的參數傳遞的月份。此LocalDateTime的其餘值保持不變。
用法:
public LocalDateTime withMonth(int months)
參數:此方法接受單個強製性參數months,該參數指定要在結果LocalDateTime實例中設置的月份。這個月的值可以在1到12之間。
返回值:該函數返回LocalDateTime實例,將月份更改為作為此方法的參數傳遞的月份。此LocalDateTime的其餘值保持不變。
異常:如果月份值無效,則該函數將引發DateTimeException。
以下示例程序旨在說明LocalDateTime.withMonth()方法:
示例1:
// Program to illustrate the withMonth() 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 months 5
System.out.println("New LocalDateTime: "
+ dt.withMonth(5));
}
}
輸出:
Original LocalDateTime: 2018-11-30T12:51:39.472 New LocalDateTime: 2018-05-30T12:51:39.472
示例2:
// Program to illustrate the withMonth() 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 months 12
System.out.println("New LocalDateTime: "
+ dt.withMonth(12));
}
}
輸出:
Original LocalDateTime: 2015-04-06T10:15:30 New LocalDateTime: 2015-12-06T10:15:30
參考: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#withMonth(int)
相關用法
- Java ZonedDateTime withMonth()用法及代碼示例
- Java LocalDate withMonth()用法及代碼示例
- Java YearMonth withMonth()用法及代碼示例
- Java MonthDay withMonth()用法及代碼示例
- Java OffsetDateTime withMonth()用法及代碼示例
- Java LocalDateTime with()用法及代碼示例
- Java LocalDateTime until()用法及代碼示例
- Java LocalDateTime plus()用法及代碼示例
- Java LocalDateTime now()用法及代碼示例
- Java LocalDateTime from()用法及代碼示例
- Java LocalDateTime isBefore()用法及代碼示例
- Java LocalDateTime plusHours()用法及代碼示例
- Java LocalDateTime plusMinutes()用法及代碼示例
- Java LocalDateTime isEqual()用法及代碼示例
- Java LocalDateTime plusDays()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 LocalDateTime withMonth() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。