Thursday, December 11, 2025
HomeLanguagesJavaPeriod getDays() method in Java with Examples

Period getDays() method in Java with Examples

The getDays() method of Period class in Java is used to get the number of days in this current period with which it is used.

Syntax:

public int getDays()

Parameters: This method does not accepts any parameter.

Return Value: This function returns the number of days in the given period.

Below programs illustrate the above method:

Program 1:




// Java code to show the function getDays()
// to get number of days from given period
import java.time.Period;
import java.time.temporal.ChronoUnit;
  
public class PeriodDemo {
  
    // Function to get number of days of given period
    static void getNumberOfDays(int year, int months, int days)
    {
        Period period = Period.of(year, months, days);
        System.out.println(period.getDays());
    }
  
    // Driver Code
    public static void main(String[] args)
    {
  
        int year = 8;
        int months = 5;
        int days = 25;
  
        getNumberOfDays(year, months, days);
    }
}


Output:

25

Program 2:




// Java code to show the function getDays()
// to get number of days from given period
import java.time.Period;
import java.time.temporal.ChronoUnit;
  
public class PeriodDemo {
  
    // Function to get number of days of given period
    static void getNumberOfDays(int year, int months, int days)
    {
        Period period = Period.of(year, months, days);
        System.out.println(period.getDays());
    }
  
    // Driver Code
    public static void main(String[] args)
    {
  
        int year = 0;
        int months = 0;
        int days = 365;
  
        getNumberOfDays(year, months, days);
    }
}


Output:

365

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#getDays–

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32440 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6811 POSTS0 COMMENTS
Nicole Veronica
11950 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12023 POSTS0 COMMENTS
Shaida Kate Naidoo
6943 POSTS0 COMMENTS
Ted Musemwa
7195 POSTS0 COMMENTS
Thapelo Manthata
6889 POSTS0 COMMENTS
Umr Jansen
6880 POSTS0 COMMENTS