Thread.sleep(100)解释是睡眠但还是不能理解是什么意思?
Thread.sleep(100)解释是睡眠但还是不能理解是什么意思?还有为什么 不加throws Exception会出错,麻烦大虾解答,谢谢
import java.util.Timer;
class demo
{
public static void main(String args[])throws Exception
{
String str="使用java制作打字效果";
String[]data=new String[str.length()];
for(int i=0;i <data.length;i++){
data[i]=str.substring(i, i+1);
System.out.println(data[i]);
//Timer timer=new Timer();
Thread.sleep(100);
}
}
}
还有这里面的Thread.sleep(360000); //睡眠6分钟
到底应该怎么理解啊
import *;
import *;
public class SimpleServer {
public static void main(String args[])throws Exception {
ServerSocket serverSocket = new ServerSocket(8000,2); //连接请求队列的长度为2
Thread.sleep(360000); //睡眠6分钟
}
}