Java Period negated()方法及示例

Java Period negated()方法及示例

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

语法

public Period negated()

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

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

异常: 它抛出一个 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

程序2 :

// 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://docs.oracle.com/javase/8/docs/api/java/time/Period.html#negated-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程