LocalTime plusSeconds(long secondstoAdd)
returns a copy of this LocalTime with the specified period in seconds added.
plusSeconds
has the following syntax.
public LocalTime plusSeconds(long secondstoAdd)
The following example shows how to use plusSeconds
.
import java.time.LocalTime; public class Main { public static void main(String[] args) { LocalTime l = LocalTime.now(); LocalTime s = l.plusSeconds(1234); System.out.println(s); } }
The code above generates the following result.