Java中的ChronoLocalDate接口的adjustInto()方法用于将指定的时间对象调整为与该对象具有相同的日期。
用法:
public Temporal adjustInto(Temporal temporal)
参数:此方法接受单个参数temporal,它是要调整的目标对象,并且不专门为null。
返回值:返回调整后的对象,不为null。
异常:该函数引发两个异常,如下所述:
- DateTimeException:如果无法进行调整,程序将抛出此错误。
- ArithmeticException:如果出现数字溢出,程序将抛出此错误。
以下程序说明了Java中ChronoLocalDate的adjustInto()方法:
程序1:
// Program to illustrate the adjustInto() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
ZonedDateTime date
= ZonedDateTime.now();
// prints the date
System.out.println(date);
// Parses the date
ChronoLocalDate date1
= LocalDate.parse("2015-01-31");
// Uses the function to adjust the date
date = (ZonedDateTime)date1.adjustInto(date);
// Prints the adjusted date
System.out.println(date);
}
}
输出:
2019-04-28T19:58:13.775Z[Etc/UTC] 2015-01-31T19:58:13.775Z[Etc/UTC]
程序2:说明异常。下面的程序引发异常,因为2月是28天而不是31天。
// Program to illustrate the adjustInto() method
// Exception Program
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
try {
ZonedDateTime date
= ZonedDateTime.now();
// prints the date
System.out.println(date);
// Parses the date
ChronoLocalDate date1
= LocalDate.parse("2015-02-31");
// Uses the function to adjust the date
date = (ZonedDateTime)date1.adjustInto(date);
// Prints the adjusted date
System.out.println(date);
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
2019-04-28T19:58:17.219Z[Etc/UTC] java.time.format.DateTimeParseException: Text '2015-02-31' could not be parsed: Invalid date 'FEBRUARY 31'
相关用法
- Java ChronoLocalDate until(ChronoLocalDate)用法及代码示例
- Java MonthDay adjustInto()用法及代码示例
- Java LocalTime adjustInto()用法及代码示例
- Java ChronoLocalDateTime adjustInto()用法及代码示例
- Java DayOfWeek adjustInto()用法及代码示例
- Java OffsetTime adjustInto()用法及代码示例
- Java OffsetDateTime adjustInto()用法及代码示例
- Java Year adjustInto()用法及代码示例
- Java ZoneOffset adjustInto(Temporal)用法及代码示例
- Java ChronoLocalDate get()用法及代码示例
- Java ChronoLocalDate from()用法及代码示例
- Java ChronoLocalDate getEra()用法及代码示例
- Java ChronoLocalDate getLong()用法及代码示例
- Java ChronoLocalDate lengthOfYear()用法及代码示例
- Java ChronoLocalDate lengthOfMonth()用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 ChronoLocalDate adjustInto() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。