如何让两个System.out.println语句之间加入延时
时间: 2024-04-12 19:28:55 浏览: 88
idea输入sout无法自动补全System.out.println()的问题
5星 · 资源好评率100%
您可以使用Thread.sleep()方法来实现在两个System.out.println()语句之间加入延时。Thread.sleep()方法会暂停当前线程的执行一段时间,您可以指定要暂停的时间长度(以毫秒为单位)。
以下是一个示例代码,展示了如何在两个System.out.println()语句之间添加延时:
```java
public class DelayExample {
public static void main(String[] args) {
System.out.println("第一个输出语句");
try {
Thread.sleep(2000); // 延时2秒
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("第二个输出语句");
}
}
```
在上述代码中,第一个System.out.println()语句会立即执行,然后使用Thread.sleep()方法在第二个System.out.println()语句之前添加了2秒的延时。
注意:Thread.sleep()方法可能会抛出InterruptedException异常,因此需要进行异常处理。
阅读全文