The now(Clock clock) method of the MonthDay class in Java is used to get the current month-day from the specified clock.
Syntax:
public static MonthDay now(Clock clock)
Parameters: This method accepts clock as parameter which represents the clock to use.
Return value: This method returns the current month-day.
Below programs illustrate the now(Clock clock) method of MonthDay in Java:
Program 1:
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
MonthDay result = MonthDay.now(
Clock.systemUTC());
System.out.println( "MonthDay: "
+ result);
}
}
|
Output:
MonthDay: --05-09
Program 2:
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
MonthDay result = MonthDay.now(
Clock.systemUTC());
System.out.println( "Month: "
+ result.getMonth());
}
}
|
References: https://docs.oracle.com/javase/10/docs/api/java/time/MonthDay.html#now(java.time.Clock)
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 :
12 May, 2020
Like Article
Save Article