java 时间毫秒上加1怎么做
要将时间的毫秒部分加1,可以使用以下代码:
import java.time.LocalDateTime;
public class Main {
public static void main(String[] args) {
LocalDateTime now = LocalDateTime.now();
LocalDateTime newTime = now.plusNanos(1_000_000); // 将时间加1毫秒
System.out.println("原时间:" + now);
System.out.println("新时间:" + newTime);
}
}
这里使用了java.time.LocalDateTime类来表示时间,plusNanos()方法可以在原时间的基础上加上指定的纳秒数,1毫秒等于1,000,000纳秒。
原文地址: http://www.cveoy.top/t/topic/iTll 著作权归作者所有。请勿转载和采集!