java.time.Duration.toHours() Method Example



Description

The java.time.Duration.toHours() method gets the number of hours in this duration.

Declaration

Following is the declaration for java.time.Duration.toHours() method.

public long toHours()

Return Value

the number of hours in the duration, may be negative.

Example

The following example shows the usage of java.time.Duration.toHours() method.

package com.tutorialspoint;

import java.time.Duration;

public class DurationDemo {
   public static void main(String[] args) {

      Duration duration = Duration.ofDays(2);
      System.out.println(duration.toHours());  
   }
}

Let us compile and run the above program, this will produce the following result −

48
Advertisements