The ofDays(long) method of Duration Class in java.time package is used to get a duration in a 24 hour format. In this method, the seconds are calculated as total seconds in 24 hour day format, i.e. 86400 seconds per day. Syntax:
public static Duration ofDays(long days)
Parameters: This method accepts a parameter days which is the number of days. It can be positive or negative. Return Value: This method returns a Duration representing the time in 24 hour format. Exception: This method throws ArithmeticException if the input days exceeds the capacity of Duration. Below examples illustrate the Duration.ofDays() method: Example 1:
Java
import java.time.Duration;
public class GFG {
public static void main(String[] args)
{
long noOfDays = 5 ;
Duration duration = Duration.ofDays(noOfDays);
System.out.println(duration.getSeconds());
}
}
|
Example 2:
Java
import java.time.Duration;
public class GFG {
public static void main(String[] args)
{
long noOfDays = - 214545 ;
Duration duration = Duration.ofDays(noOfDays);
System.out.println(duration.getSeconds());
}
}
|
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/Duration.html#ofDays-long-
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
13 Feb, 2023
Like Article
Save Article