The
of(LocalDate date, LocalTime time) method of
LocalDateTime class in Java is used to obtain an instance of
LocalDateTime using the two input parameters, date and time. Initially, two separate instances are created. One is of LocalDate type and the other one is of LocalTime type. Then these are merged to create a LocalDateTime.
Syntax:
public static LocalDateTime of(LocalDate date,
LocalTime time)
Parameters: This method accepts two parameters:
- date- It is of LocalDate type and represents the local date.
- time- It is of LocalTime type and represents the local time.
Return Value: This method returns the
localdate-time.
Exceptions: This method does not throw any exception.
Below programs illustrate the of(LocalDate date, LocalTime time) method in Java:
Program 1:
Output:
DateTime: 2020-05-13T06:30
Program 2: