Java中的OffsetTime类的minusSeconds()方法返回此OffsetTime的副本,其中减去指定的秒数。
用法:
public OffsetTime minusSeconds(long Seconds)
参数:此方法接受一个要减去的秒数的参数Seconds。可能是负面的。
返回值:它基于此时间返回一个OffsetTime并减去Seconds,并且它不为null。
以下示例程序旨在说明minusSeconds()方法:
示例1:
// Java program to demonstrate the minusSeconds() method
import java.time.OffsetTime;
public class GFG {
public static void main(String[] args)
{
// Parses the time
OffsetTime time = OffsetTime.parse("11:10:10+05:05");
// Specified Seconds subtracted
System.out.println("After subtraction, time is: "
+ time.minusSeconds(5));
}
}
输出:
After subtraction, time is: 11:10:05+05:05
程序2:
// Java program to demonstrate the minusSeconds() method
import java.time.OffsetTime;
public class GFG {
public static void main(String[] args)
{
// Parses the time
OffsetTime time = OffsetTime.parse("11:10:10+05:05");
// Specified Seconds subtracted
System.out.println("After subtraction, time is: "
+ time.minusSeconds(-5));
}
}
输出:
After subtraction, time is: 11:10:15+05:05
参考: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#minusSeconds-long-
相关用法
- Java LocalTime minusSeconds()用法及代码示例
- Java OffsetDateTime minusSeconds()用法及代码示例
- Java Instant minusSeconds()用法及代码示例
- Java ZonedDateTime minusSeconds()用法及代码示例
- Java Duration minusSeconds(long)用法及代码示例
- Java OffsetTime until()用法及代码示例
- Java OffsetTime from()用法及代码示例
- Java OffsetTime get()用法及代码示例
- Java OffsetTime plus()用法及代码示例
- Java OffsetTime now()用法及代码示例
- Java OffsetTime with()用法及代码示例
- Java OffsetTime adjustInto()用法及代码示例
- Java OffsetTime isBefore()用法及代码示例
- Java OffsetTime getNano()用法及代码示例
- Java OffsetTime format()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 OffsetTime minusSeconds() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。