
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
Instant now() Method in Java
The current instant from the system UTC clock can be obtained using the now() method in the Instant class in Java. This method requires no parameters and it returns the current instant from the system UTC clock.
A program that demonstrates this is given as follows −
Example
import java.time.*; public class Demo { public static void main(String[] args) { Instant i = Instant.now(); System.out.println("The current Instant is: " + i); } }
Output
The current Instant is: 2019-02-12T11:49:22.455Z
Now let us understand the above program.
The current instant from the system UTC clock is obtained using the now() method and then it is printed. A code snippet that demonstrates this is as follows −
Instant i = Instant.now(); System.out.println("The current Instant is: " + i);
- Related Questions & Answers
- Instant isBefore() method in Java
- Instant isAfter() method in Java
- Instant minusMillis() method in Java
- Instant minusNanos() method in Java
- Instant until() Method in Java
- Instant plus() method in Java
- Instant minus() method in Java
- Instant isSupported() method in Java
- Instant truncatedTo() method in Java
- Instant parse() method in Java
- Instant toString() method in Java
- Instant range() method in Java
- Instant get() method in Java
- Instant plusNanos() method in Java
- Instant minusSeconds() method in Java
Advertisements