🎓 Check Out My Top 25 Udemy Courses (80-90% Discount): My Udemy Courses - Ramesh Fadatare
In this guide, you will learn about the Duration toHours() method in Java programming and how to use it with an example.
1. Duration toHours() Method Overview
Definition:
The Duration.toHours() method is used to obtain the number of whole hours represented by the Duration instance, disregarding any fractional hours.
Syntax:
public long toHours()
Parameters:
- None.
Key Points:
- The method returns the number of hours in the Duration, not counting any fractional part. Any excess precision information is disregarded.
- If the duration is negative, the method will return a negative value.
- This method can be particularly useful when converting a Duration to a human-readable format or when performing arithmetic operations that require whole numbers.
2. Duration toHours() Method Example
import java.time.Duration;
public class DurationToHoursExample {
public static void main(String[] args) {
Duration duration1 = Duration.ofMinutes(150); // 2 hours and 30 minutes
Duration duration2 = Duration.ofMinutes(-45); // -45 minutes
// Convert durations to hours
long hours1 = duration1.toHours();
long hours2 = duration2.toHours();
// Print the hours
System.out.println("Duration1 in hours: " + hours1);
System.out.println("Duration2 in hours: " + hours2);
}
}
Output:
Duration1 in hours: 2 Duration2 in hours: -1
Explanation:
In the example, duration1 is created with a duration of 150 minutes, which equates to 2 hours and 30 minutes.
When toHours() is called on this instance, it returns 2, disregarding the additional 30 minutes.
Similarly, duration2 is created with a negative duration of -45 minutes. When toHours() is invoked on this duration, it rounds to -1 hour, since there's no complete hour in the negative 45 minutes, and any fractional part is disregarded.
My Top and Bestseller Udemy Courses. The sale is going on with a 70 - 80% discount. The discount coupon has been added to each course below:
Build REST APIs with Spring Boot 4, Spring Security 7, and JWT
[NEW] Learn Apache Maven with IntelliJ IDEA and Java 25
ChatGPT + Generative AI + Prompt Engineering for Beginners
Spring 7 and Spring Boot 4 for Beginners (Includes 8 Projects)
Available in Udemy for Business
Building Real-Time REST APIs with Spring Boot - Blog App
Available in Udemy for Business
Building Microservices with Spring Boot and Spring Cloud
Available in Udemy for Business
Java Full-Stack Developer Course with Spring Boot and React JS
Available in Udemy for Business
Build 5 Spring Boot Projects with Java: Line-by-Line Coding
Testing Spring Boot Application with JUnit and Mockito
Available in Udemy for Business
Spring Boot Thymeleaf Real-Time Web Application - Blog App
Available in Udemy for Business
Master Spring Data JPA with Hibernate
Available in Udemy for Business
Spring Boot + Apache Kafka Course - The Practical Guide
Available in Udemy for Business
Comments
Post a Comment
Leave Comment