当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ChronoPeriod negated()用法及代码示例


Java中的ChronoPeriod接口的negated()方法用于在否定YEAR,MONTH,DAY期间的所有元素后返回ChronoPeriod的新实例。

用法:

ChronoPeriod negated()

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


返回值:否定期间的每个元素后,此方法将返回ChronoPeriod的新实例。

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

以下示例程序旨在说明上述方法:

程序1

// Java code to show the function to negate all 
// elements of the period 
  
import java.time.*; 
import java.time.chrono.*; 
import java.time.temporal.ChronoUnit; 
  
public class ChronoPeriodClass { 
  
    // Function to negate given periods 
    static void toNegate(ChronoPeriod 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; 
        ChronoPeriod 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.*; 
import java.time.chrono.*; 
import java.time.temporal.ChronoUnit; 
  
public class ChronoPeriodClass { 
  
    // Function to negate given periods 
    static void toNegate(ChronoPeriod 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; 
        ChronoPeriod p1 = Period.of(year, months, days); 
  
        toNegate(p1); 
    } 
}
输出:
P4Y11M10D

参考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoPeriod.html#negated–



相关用法


注:本文由纯净天空筛选整理自srinam大神的英文原创作品 ChronoPeriod negated() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。