LocalDateTime minusSeconds(long seconds) example
Description
LocalDateTime minusSeconds(long seconds)
returns a
copy of this LocalDateTime with the specified period in seconds subtracted.
Syntax
minusSeconds
has the following syntax.
public LocalDateTime minusSeconds(long seconds)
Example
The following example shows how to use minusSeconds
.
import java.time.LocalDateTime;
//w w w . j a v a 2 s .com
public class Main {
public static void main(String[] args) {
LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 00);
LocalDateTime t = a.minusSeconds(100);
System.out.println(t);
}
}
The code above generates the following result.