在Java中,可以使用Thread類的sleep方法來實現延遲操作。以下是一個示例代碼:
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("結束");
}
}
在上面的代碼中,通過調用Thread.sleep(2000)方法實現了延遲2秒的效果。需要注意的是,sleep方法會拋出InterruptedException異常,需要進行異常處理。