Duration toHours() 方法在 Java 中
可以使用 Java 中 Duration 类的 toHours() 方法获得持续时间以小时数的形式的值。此方法不需要任何参数,它以小时数的形式返回持续时间。
展示此内容的程序如下 −
示例
import java.time.Duration; public class GFG { public static void main(String[] args) { Duration d = Duration.ofDays(1); System.out.println("The duration is: " + d); System.out.println("Number of hours in the duration is: " + d.toHours()); } }
输出
The duration is: PT24H Number of hours in the duration is: 24
现在,让我们了解以上程序。
首先显示持续时间,然后使用 toHours() 方法显示持续时间中的小时数。展示此内容的代码片段如下 −
Duration d = Duration.ofDays(1); System.out.println("The duration is: " + d); System.out.println("Number of hours in the duration is: " + d.toHours());
广告