java.time.Period.negated() Method Example



Description

The java.time.Period.negated() method returns a copy of this Period with the length negated.

Declaration

Following is the declaration for java.time.Period.negated() method.

public Period negated()

Return Value

a Period based on this Period with the amount negated, not null.

Exception

ArithmeticException − if numeric overflow occurs.

Example

The following example shows the usage of java.time.Period.negated() method.

package com.tutorialspoint;

import java.time.Period;

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

      Period period = Period.ofDays(5);
      System.out.println(period.getDays());
      Period period1 = period.negated();
      System.out.println(period1.getDays());
   }
}

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

5
-5
Advertisements