Java Date Time - LocalDateTime plusHours(long hours) example








LocalDateTime plusHours(long hours) returns a copy of this LocalDateTime with the specified period in hours added.

Syntax

plusHours has the following syntax.

public LocalDateTime plusHours(long hours)

Example

The following example shows how to use plusHours.

import java.time.LocalDateTime;
//from www . j  a  va2  s  . com
public class Main {
  public static void main(String[] args) {
    LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 00);
    
    LocalDateTime t = a.plusHours(100);
    
    System.out.println(t);
  }
}

The code above generates the following result.