继承Thread类
new Thread() {//new 类(){}继承这个类
public void run() {//重写run方法
for(int i = 0; i < 3000; i++) {//将要执行的代码,写在run方法中
System.out.println("aaaaaaaaaaaaaaaaaaaaaaaa");
}
}
}.start();
实现Runnable接口
new Thread(new Runnable(){//new 接口(){}实现这个接口
public void run() {//重写run方法
for(int i = 0; i < 3000; i++) {//将要执行的代码,写在run方法中
System.out.println("bb");
}
}
}).start();
|
|