Year類的adjustInto()方法用於將傳遞的時間對象調整為應用此方法的今年,此實例是不可變的,不受此方法調用的影響。
用法:
public Temporal adjustInto(Temporal temporal)
參數:該方法接受時間作為參數,該時間是要調整的目標時間對象。它不能為空。
返回值:此方法返回調整後的對象。
異常:此方法引發以下異常:
- DateTimeException-如果無法進行調整。
- ArithmeticException-如果發生數字溢出。
以下示例程序旨在說明adjustInto()方法:
示例1:
// Java program to demonstrate
// Year.adjustInto() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a Year object
Year yr
= Year.of(2019);
// create a temporal object
LocalDate date = LocalDate.parse("2007-12-03");
// print instance
System.out.println("LocalDate :"
+ date);
// apply adjustInto method of Year class
LocalDate updatedlocal = (LocalDate)yr.adjustInto(date);
// print instance
System.out.println("LocalDate after"
+ " applying adjustInto method: "
+ updatedlocal);
}
}
輸出:
LocalDate :2007-12-03 LocalDate after applying adjustInto method: 2019-12-03
示例2:
// Java program to demonstrate
// Year.adjustInto() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a Year object
Year yr
= Year.of(2032);
// create a temporal object
LocalDate date = LocalDate.parse("2017-01-13");
// print instance
System.out.println("LocalDate :"
+ date);
// apply adjustInto method of Year class
LocalDate updatedlocal = (LocalDate)yr.adjustInto(date);
// print instance
System.out.println("LocalDate after"
+ " applying adjustInto method: "
+ updatedlocal);
}
}
輸出:
LocalDate :2017-01-13 LocalDate after applying adjustInto method: 2032-01-13
相關用法
- Java ChronoLocalDate adjustInto()用法及代碼示例
- Java OffsetTime adjustInto()用法及代碼示例
- Java OffsetDateTime adjustInto()用法及代碼示例
- Java DayOfWeek adjustInto()用法及代碼示例
- Java LocalTime adjustInto()用法及代碼示例
- Java ChronoLocalDateTime adjustInto()用法及代碼示例
- Java MonthDay adjustInto()用法及代碼示例
- Java ZoneOffset adjustInto(Temporal)用法及代碼示例
- Java Year with()用法及代碼示例
- Java Year until()用法及代碼示例
- Java Year get()用法及代碼示例
- Java Year now()用法及代碼示例
- Java Year from()用法及代碼示例
- Java Year of()用法及代碼示例
- Java Year compareTo()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Year adjustInto() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。