java多线程中的实现方式存在两种:
方式一:使用继承方式
例如:
PersonTest extends Thread{ String name; public PersonTest(String name){ super(name); this.name=name } }
方式二:使用实现接口的方式
例如:
public PersonT implements Runnable{
public void run(){
//此处为执行的代码
}
}
//实例化方式
public jacktest{
public static void main(String[] args){
PersonT t=new PersonT();
Thread tt=new Thread(t,"线程1");
tt.start();
}
}
wait使用方式:
package TestThread.ThreadSynchronized.TestInterruptedException; public class InterruptDemo {
public static void main(String[] args) {
TestWait t = new TestWait("线程1");
TestWait t1 = new TestWait("线程2");
t.start();
t1.start();
}
} class TestWait extends Thread {
String name; public TestWait(String name) {
super(name);
this.name = name;
} public synchronized void run() {
for (int i = 0; i < 5; i++) {
if (i == 4) {
try {
// 等待之后立即释放当前锁,并且进入等待池中等待唤醒
// 当等待池中的线程被唤醒后,再次执行此语句之后的语句
this.wait();
System.out.println(Thread.currentThread().getName() + ":我还没有被执行到!");
} catch (InterruptedException e) {
e.printStackTrace();
}
}
System.out.println(Thread.currentThread().getName() + ":当前的值为--->" + i);
}
}
}