标签:ext color span tar nts size font class read
第一种方式:
class Demo extends Thread{
public void run(){
//线程任务
}
}
Demo d = new Demo(); //带有具体任务的线程对象
d.start();
第二种方式:
class Demo implements Runnable{
public void run(){
//线程任务
}
}
Demo d = new Demo(); //这是一个任务对象
Thread t1 = new Thread(d); //布置任务到线程对象当中
t1.start();
标签:ext color span tar nts size font class read
原文地址:http://www.cnblogs.com/cuihongfei-0903/p/7171931.html