
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
Duration Zero Field in Java
The ZERO field sets the duration to zero in the Duration class in Java. This field is quite the same as the null value in different data types in Java.
A program that demonstrates the ZERO field is given as follows −
Example
import java.time.Duration; public class Demo { public static void main(String[] args) { Duration d = Duration.ZERO; boolean flag = d.isZero(); System.out.println("The duration is: " + d); if(flag) System.out.println("The above duration is of zero length"); else System.out.println("The above duration is not of zero length"); } }
Output
The duration is: PT0S The above duration is of zero length
Now let us understand the above program.
First the duration is set to zero using the ZERO field and then it is displayed. Then flag holds the returned value of isZero() method. According to the value in flag, the length of the duration is zero or not and that is printed. A code snippet that demonstrates this is as follows −
Duration d = Duration.ZERO; boolean flag = d.isZero(); System.out.println("The duration is: " + d); if(flag) System.out.println("The above duration is of zero length"); else System.out.println("The above duration is not of zero length");
Advertisements