
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Get the Number of Hours in This Duration in Java
At first, set the Duration −
Duration duration = Duration.ofDays(25);
Now, get the number of hours from the above Duration that has 25 days −
duration.toHours()
Example
import java.time.Duration; public class Demo { public static void main(String[] args) { Duration duration = Duration.ofDays(25); System.out.println("Hours in 25 days = "+duration.toHours()); } }
Output
Hours in 25 days = 600
Advertisements