- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Duration toMillis() method in Java
The value of a particular duration in the number of milliseconds can be obtained using the toMillis() method in the Duration class in Java. This method requires no parameters and it returns the duration in the number of milliseconds.
A program that demonstrates this is given as follows −
Example
import java.time.Duration; public class Demo { public static void main(String[] args) { Duration d = Duration.ofSeconds(1); System.out.println("The duration is: " + d); System.out.println("The number of milliseconds in the duration is: " + d.toMillis()); } }
Output
The duration is: PT1S The number of milliseconds in the duration is: 1000
Now let us understand the above program.
First the duration is displayed. Then the value of that duration in the number of milliseconds is obtained using the toMillis() method and displayed. A code snippet that demonstrates this is as follows −
Duration d = Duration.ofSeconds(1); System.out.println("The duration is: " + d); System.out.println("The number of milliseconds in the duration is: " + d.toMillis());
- Related Articles
- Duration equals() method in Java
- Duration toHours() method in Java
- Duration toMinutes() method in Java
- Duration abs() method in Java
- Duration negated() method in Java
- Duration ofSeconds() method in Java
- Duration get() method in Java
- Duration toString() method in Java
- Duration ofNanos() method in Java
- Duration between() method in Java
- Duration hashCode() method in Java
- Duration ofMillis() method in Java
- Duration minusSeconds() method in Java
- Duration minusMinutes() method in Java
- Duration of() method in Java

Advertisements