📜  Java中的句点 negated() 方法和示例

📅  最后修改于: 2022-05-13 01:55:04.544000             🧑  作者: Mango

Java中的句点 negated() 方法和示例

Java中 Period 类的 negated() 方法用于在否定周期 YEAR、MONTH、DAY 的所有元素后返回一个新的 Period 实例。

句法:

public Period negated()

参数:此方法不接受任何参数。

返回值:该方法在否定周期的每个元素后返回一个新的周期实例。

异常:它抛出一个ArithmeticException 。如果发生数字溢出,则会捕获此异常。

下面的程序说明了上述方法:

程序 1

// Java code to show the function to negate all
// elements of the period
import java.time.Period;
import java.time.temporal.ChronoUnit;
  
public class PeriodClass {
  
    // Function to negate given periods
    static void toNegate(Period p1)
    {
  
        System.out.println(p1.negated());
    }
  
    // Driver Code
    public static void main(String[] args)
    {
        // Defining period
        int year = 4;
        int months = 11;
        int days = 10;
        Period p1 = Period.of(year, months, days);
  
        toNegate(p1);
    }
}
输出:
P-4Y-11M-10D

方案二

// Java code to show the function to negate all
// elements of the period
import java.time.Period;
import java.time.temporal.ChronoUnit;
  
public class PeriodClass {
  
    // Function to negate given periods
    static void toNegate(Period p1)
    {
  
        System.out.println(p1.negated());
    }
  
    // Driver Code
    public static void main(String[] args)
    {
        // Defining period
        int year = -4;
        int months = -11;
        int days = -10;
        Period p1 = Period.of(year, months, days);
  
        toNegate(p1);
    }
}
输出:
P4Y11M10D

参考:https: Java/time/Period.html#negated–