标签:param 执行 线程学习 sys 多线程 继承 代码 i++ java多线程
开启多线程1,继承Thread
2,重写run方法
3,将要执行的代码写在run方法中
4,创建Thread类的子类对象
5,开启线程
/**
* @param args
*/
public static void main(String[] args) {
MyThread mt = new MyThread(); //4,创建Thread类的子类对象
mt.start(); //5,开启线程
for(int i = 0; i < 1000; i++) {
System.out.println("main()");
}
}
}
class MyThread extends Thread { //1,继承Thread
public void run() { //2,重写run方法
for(int i = 0; i < 1000; i++) { //3,将要执行的代码写在run方法中
System.out.println("aaa");
}
}
public static void main(String[] args) {
MyThread myThread = new MyThread();
myThread.start();
for (int i = 0; i <10000; i++) {
System.out.println("mian()");
}
}
}
class MyThread extends Thread{
public void run(){
for (int i = 0; i < 10000; i++) {
System.out.println("run()"+i);
}
}
标签:param 执行 线程学习 sys 多线程 继承 代码 i++ java多线程
原文地址:http://blog.51cto.com/357712148/2156198