java.time.Period.ofDays() Method Example



Description

The java.time.Period.ofDays(int days) method obtains a Period representing a number of standard 24 hour days.

Declaration

Following is the declaration for java.time.Period.ofDays(int days) method.

public static Period ofDays(int days)

Parameters

days − the number of days, positive or negative.

Return Value

a Period of days, not null.

Example

The following example shows the usage of java.time.Period.ofDays(int days) method.

package com.tutorialspoint;

import java.time.Period;

public class PeriodDemo {
   public static void main(String[] args) {

      Period period = Period.ofDays(2);
      System.out.println(period.getDays());      
   }
}

Let us compile and run the above program, this will produce the following result −

2
Advertisements