Thursday, September 4, 2025
HomeLanguagesJavaLocalTime now() method in Java with Examples

LocalTime now() method in Java with Examples

The now() method of the LocalTime class in Java is used to get the current time from the system clock in the default time-zone.

Syntax:

public static LocalTime now()

Parameters: This method does not accept any parameter.

Return value: This method returns the current time using the system clock and default time-zone.

Below programs illustrate the now() method of LocalTime in Java:

Program 1:




// Java program to demonstrate
// LocalTime.now() method
  
import java.time.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // apply now() method
        // of LocalTime class
        LocalTime time = LocalTime.now();
  
        // print time
        System.out.println("Time: "
                           + time);
    }
}


Output: It varies as the time passes.

Time: 20:43:41.453

Program 2:




// Java program to demonstrate
// LocalTime.now() method
  
import java.time.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // apply now() method
        // of LocalTime class
        LocalTime time = LocalTime.now();
  
        // print time
        System.out.println("Time: "
                           + time);
    }
}


Output: It varies as the time passes.

Time: 20:44:06.567

Above two examples show how the output changes for same program as the time progresses.
References: https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#now()

RELATED ARTICLES

Most Popular

Dominic
32261 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6695 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS