Instant类的minusMillis()方法从该瞬间减去指定的持续时间(以毫秒为单位),并将结果作为即时对象返回。此返回的Instant是不可变的。
用法:
public Instant minusMillis(long millisToSubtract)
参数:此方法接受一个参数millisToSubtract,该参数减去毫秒。
返回值:减去milliSeconds后,此方法返回Instant。
异常:此方法引发以下异常:
- DateTimeException:如果结果超过最大或最小瞬间。
- ArithmeticException:如果发生数字溢出。
以下示例程序旨在说明minusMillis()方法:
示例1:
// Java program to demonstrate
// Instant.minusMillis() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant
= Instant.parse("2018-12-30T19:34:50.63Z");
// subtract 64000000 MILLI_OF_SECOND
// means 64000 seconds from this instant
Instant returnedValue
= instant.minusMillis(64000000);
// print result
System.out.println("Returned Instant: "
+ returnedValue);
}
}
输出:
Returned Instant: 2018-12-30T01:48:10.630Z
示例2:
// Java program to demonstrate
// Instant.minusMillis() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant = Instant.now();
// current Instant
System.out.println("current instant: "
+ instant);
// subtract 36000000 MILLI_OF_SECOND
// means 36000 seconds from this instant
Instant returnedValue
= instant.minusMillis(36000000);
// print result
System.out.println("Returned Instant: "
+ returnedValue);
}
}
输出:
current instant: 2018-11-27T05:13:12.132Z Returned Instant: 2018-11-26T19:13:12.132Z
参考:https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#minusMillis(long)
相关用法
- Java Duration minusMillis(long)用法及代码示例
- Java Instant with()用法及代码示例
- Java Instant plus()用法及代码示例
- Java Instant now()用法及代码示例
- Java Instant get()用法及代码示例
- Java Instant until()用法及代码示例
- Java Instant from()用法及代码示例
- Java Instant getEpochSecond()用法及代码示例
- Java Instant atOffset()用法及代码示例
- Java Instant hashCode()用法及代码示例
- Java Instant plusSeconds()用法及代码示例
- Java Instant isBefore()用法及代码示例
- Java Instant isAfter()用法及代码示例
- Java 8 Clock instant()用法及代码示例
- Java Instant parse()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Instant minusMillis() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。