多線程練習一
阿新 • • 發佈:2018-08-08
sta aaa pub ... print string demo 構造 new t
/**
* @param args
*/
public static void main(String[] args) {
//demo1();
Thread t1 = new Thread() {
public void run() {
//this.setName("張三");
System.out.println(this.getName() + "....aaaaaaaaaaaaa");
}
};
Thread t2 = new Thread() {
public void run() {
//this.setName("李四");
System.out.println(this.getName() + "....bb");
}
};
t1.setName("張三");
t2.setName("李四");
t1.start();
t2.start();
}
public static void demo1() {
new Thread("張帥") { //通過構造方法給name賦值
public void run() {
System.out.println(this.getName() + "....aaaaaaaaa");
}
}.start();
new Thread("鳳姐") {
public void run() {
System.out.println(this.getName() + "....bb");
}
}.start();
}
多線程練習一