Period ofMonths() method in Java


The Period can be obtained with the given number of months using the ofMonths() method in the Period class in Java. This method requires a single parameter i.e. the number of months and it returns the Period object with the given number of months.

A program that demonstrates this is given as follows −

Example

 Live Demo

import java.time.Period;
public class Demo {
   public static void main(String[] args) {
      int months = 11;
      Period p = Period.ofMonths(months);
      System.out.println("The Period is: " + p);
   }
}

Output

The Period is: P11M

Now let us understand the above program.

The Period is obtained with the given number of months using the ofMonths() method and then it is printed. A code snippet that demonstrates this is as follows −

int months = 11;
Period p = Period.ofMonths(months);
System.out.println("The Period is: " + p);

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 30-Jul-2019

140 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements