标签:多线程
public class TestThread extends Thread {
public static void main(String[] args) {
TestThread tt = new TestThread();
tt.start();
}
//重写run方法
public void run() {
System.out.println("run");
}
}
public class TestThread {
public static void main(String[] args) {
T t = new T();
Thread tt = new Thread(t);
tt.start();
}
}
class T implements Runnable {
@Override
public void run() {
System.out.println("run");
}
}
应该多使用Runnable接口实现多线程,可以实现多继承
String getName();返回当前线程
void setName(String name);//设置线程名字
static currentThread();//返回当前线程
setPriority(int new);//改变线程的优先级
getPriority()返回线程的优先级
Thread.sleep(10);//让线程睡10秒,阻塞
synchroized(对象) {
//需要同步的代码
}
public synchroinized void show(String name) {
...
}
wait();//让当前线程等待
notify();//唤醒线程
notifyAll();//唤醒正在排队的所有线程
标签:多线程
原文地址:http://blog.csdn.net/ttf1993/article/details/45722747