📘 Premium Read: Access my best content on Medium member-only articles — deep dives into Java, Spring Boot, Microservices, backend architecture, interview preparation, career advice, and industry-standard best practices.
🎓 Top 15 Udemy Courses (80-90% Discount): My Udemy Courses - Ramesh Fadatare — All my Udemy courses are real-time and project oriented courses.
▶️ Subscribe to My YouTube Channel (176K+ subscribers): Java Guides on YouTube
▶️ For AI, ChatGPT, Web, Tech, and Generative AI, subscribe to another channel: Ramesh Fadatare on YouTube
In this guide, you will learn about the Period getDays() method in Java programming and how to use it with an example.
1. Period getDays() Method Overview
Definition:
The Period.getDays() method in Java is a part of the java.time.Period class and it returns the number of days of this period. Period is used to define an amount of time in terms of years, months, and days.
Syntax:
public int getDays()
Parameters:
- The method does not take any parameters.
Key Points:
- The getDays() method returns the day part of the Period, which may be negative.
- The Period class is part of the java.time package, which was introduced in Java 8 to handle date and time.
- A Period is immutable and thread-safe, providing various utility methods for manipulating time.
2. Period getDays() Method Example
import java.time.Period;
public class PeriodGetDaysExample {
public static void main(String[] args) {
// Create a Period of 2 years, 3 months, and 4 days
Period period = Period.of(2, 3, 4);
// Get the day part of the period
int days = period.getDays();
// Print the number of days
System.out.println("Number of days in the period: " + days);
// Create a Period with a negative number of days
Period negativePeriod = Period.of(0, 0, -5);
// Get the day part of the negative period
int negativeDays = negativePeriod.getDays();
// Print the number of days in the negative period
System.out.println("Number of days in the negative period: " + negativeDays);
}
}
Output:
Number of days in the period: 4 Number of days in the negative period: -5
Explanation:
In this example, we have created two Period objects, one with positive days and the other with negative days.
The getDays() method is used to retrieve the day part of these periods. The first Period object, period, is constructed with 2 years, 3 months, and 4 days, so the getDays() method returns 4. The second Period object, negativePeriod, is constructed with -5 days, and hence getDays() returns -5.
Comments
Post a Comment
Leave Comment