- 浏览: 124288 次
- 性别:
- 来自: 杭州
文章分类
最新评论
-
willse:
嘿嘿,很好很强大! 有意思............
[转]用ReflectionFactory实现不调用构造参数创建对象 -
phoenix_sun:
谢谢,很完正,是我需要的例子,多谢
使用Spring的JdbcTemplate调用Oracle的存储过程 -
fly533:
不错,非常完整!
使用Spring的JdbcTemplate调用Oracle的存储过程 -
lxc914_java:
,不错,很详细。
[转]详解JAVA POI导出EXCEL报表的操作(包括各种格式及样式的实现)
往往混淆了这三个函数的使用。
从操作系统的角度讲,os会维护一个ready queue(就绪的线程队列)。并且在某一时刻cpu只为ready queue中位于队列头部的线程服务。 但是当前正在被服务的线程可能觉得cpu的服务质量不够好,于是提前退出,这就是yield。 或者当前正在被服务的线程需要睡一会,醒来后继续被服务,这就是sleep。
sleep方法不推荐使用,可用wait。 线程退出最好自己实现,在运行状态中一直检验一个状态,如果这个状态为真,就一直运行,如果外界更改了这个状态变量,那么线程就停止运行。
sleep()使当前线程进入停滞状态,所以执行sleep()的线程在指定的时间内肯定不会执行;yield()只是使当前线程重新回到可执行状态,所以执行yield()的线程有可能在进入到可执行状态后马上又被执行。 sleep()可使优先级低的线程得到执行的机会,当然也可以让同优先级和高优先级的线程有执行的机会;yield()只能使同优先级的线程有执行的机会。
当调用wait()后,线程会释放掉它所占有的“锁标志”,从而使线程所在对象中的其它synchronized数据可被别的线程使用。
waite()和notify()因为会对对象的“锁标志”进行操作,所以它们必须在synchronized函数或synchronized block中进行调用。如果在non-synchronized函数或non-synchronized block中进行调用,虽然能编译通过,但在运行时会发生IllegalMonitorStateException的异常。
彻底明白多线程通信机制:
线程间的通信 1. 线程的几种状态 线程有四种状态,任何一个线程肯定处于这四种状态中的一种:
1) 产生(New):线程对象已经产生,但尚未被启动,所以无法执行。如通过new产生了一个线程对象后没对它调用start()函数之前。
2) 可执行(Runnable):每个支持多线程的系统都有一个排程器,排程器会从线程池中选择一个线程并启动它。当一个线程处于可执行状态时,表示它可能正处于线程池中等待排排程器启动它;也可能它已正在执行。如执行了一个线程对象的start()方法后,线程就处于可执行状态,但显而易见的是此时线程不一定正在执行中。
3) 死亡(Dead):当一个线程正常结束,它便处于死亡状态。如一个线程的run()函数执行完毕后线程就进入死亡状态。 4) 停滞(Blocked):当一个线程处于停滞状态时,系统排程器就会忽略它,不对它进行排程。当处于停滞状态的线程重新回到可执行状态时,它有可能重新执行。如通过对一个线程调用wait()函数后,线程就进入停滞状态,只有当再次对该线程调用notify或notifyAll后它才能再次回到可执行状态。
2. class Thread下的常用函数函数 2.1 suspend()、resume() 1) 通过suspend()函数,可使线程进入停滞状态。通过suspend()使线程进入停滞状态后,除非收到resume()消息,否则该线程不会变回可执行状态。 2) 当调用suspend()函数后,线程不会释放它的“锁标志”。 例11:
view plaincopy to clipboardprint?
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start();// (5)
// t1.start(); //(3)
t2.start();// (4)
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
if (shareVar == 0) {
for (int i = 0; i < 5; i++) {
shareVar++;
if (shareVar == 5) {
this.suspend();// (1)
}
}
} else {
System.out.print(Thread.currentThread().getName());
System.out.println(" shareVar = " + shareVar);
this.resume();// (2)
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start();// (5)
// t1.start(); //(3)
t2.start();// (4)
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
if (shareVar == 0) {
for (int i = 0; i < 5; i++) {
shareVar++;
if (shareVar == 5) {
this.suspend();// (1)
}
}
} else {
System.out.print(Thread.currentThread().getName());
System.out.println(" shareVar = " + shareVar);
this.resume();// (2)
}
}
}运行结果为:
t2 shareVar = 5 i. 当代码(5)的t1所产生的线程运行到代码(1)处时,该线程进入停滞状态。然后排程器从线程池中唤起代码(4)的t2所产生的线程,此时shareVar值不为0,所以执行else中的语句。 ii. 也许你会问,那执行代码(2)后为什么不会使t1进入可执行状态呢?正如前面所说,t1和t2是两个不同对象的线程,而代码(1)和(2)都只对当前对象进行操作,所以t1所产生的线程执行代码(1)的结果是对象t1的当前线程进入停滞状态;而t2所产生的线程执行代码(2)的结果是把对象t2中的所有处于停滞状态的线程调回到可执行状态。 iii. 那现在把代码(4)注释掉,并去掉代码(3)的注释,是不是就能使t1重新回到可执行状态呢?运行结果是什么也不输出。为什么会这样呢?也许你会认为,当代码(5)所产生的线程执行到代码(1)时,它进入停滞状态;而代码(3)所产生的线程和代码(5)所产生的线程是属于同一个对象的,那么就当代码(3)所产生的线程执行到代码(2)时,就可使代码(5)所产生的线程执行回到可执行状态。但是要清楚,suspend()函数只是让当前线程进入停滞状态,但并不释放当前线程所获得的“锁标志”。所以当代码(5)所产生的线程进入停滞状态时,代码(3)所产生的线程仍不能启动,因为当前对象的“锁标志”仍被代码(5)所产生的线程占有。
2.2 sleep() 1) sleep ()函数有一个参数,通过参数可使线程在指定的时间内进入停滞状态,当指定的时间过后,线程则自动进入可执行状态。 2) 当调用sleep ()函数后,线程不会释放它的“锁标志”。 例12:
view plaincopy to clipboardprint?
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
for (int i = 0; i < 3; i++) {
System.out.print(Thread.currentThread().getName());
System.out.println(" : " + i);
try {
Thread.sleep(100);// (4)
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start(); // (1)
t1.start(); // (2)
// new Thread(t1).start();// (4)
// new Thread(t1).start();// (5)
// new Thread(t2).start(); (3)t2.start();
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
for (int i = 0; i < 3; i++) {
System.out.print(Thread.currentThread().getName());
System.out.println(" : " + i);
try {
Thread.sleep(100);// (4)
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start(); // (1)
t1.start(); // (2)
// new Thread(t1).start();// (4)
// new Thread(t1).start();// (5)
// new Thread(t2).start(); (3)t2.start();
}
}运行结果为:
引用: Exception in thread "main" java.lang.IllegalThreadStateException t1 : 0 at java.lang.Thread.start(Unknown Source) at MyTest.main(MyTest.java:26) t1 : 1 t1 : 2
可见,对于同一个对象直接启动2次会出现异常 我们将(1)和(2)注释掉,改成 (4)和(5)的代码,则运行结果为:
引用: Thread-0 : 0 Thread-0 : 1 Thread-0 : 2 Thread-1 : 0 Thread-1 : 1 Thread-1 : 2
由结果可证明,虽然在run()中执行了sleep(),但是它不会释放对象的“锁标志”,所以除非代码(1)的线程执行完run()函数并释放对象的“锁标志”,否则代码(2)的线程永远不会执行。
如果把代码(2)注释掉,并去掉代码(3)的注释,结果将变为:
引用: Thread-0 : 0 Thread-1 : 0 Thread-0 : 1 Thread-1 : 1 Thread-1 : 2 Thread-0 : 2
由于t1和t2是两个对象的线程,所以当线程t1通过sleep()进入停滞时,排程器会从线程池中调用其它的可执行线程,从而t2线程被启动。
例13:
view plaincopy to clipboardprint?
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
for (int i = 0; i < 5; i++) {
System.out.print(Thread.currentThread().getName());
System.out.println(" : " + i);
try {
if (Thread.currentThread().getName().equals("t1"))
Thread.sleep(200);
else
Thread.sleep(100);
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start();
// t1.start();
t2.start();
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
for (int i = 0; i < 5; i++) {
System.out.print(Thread.currentThread().getName());
System.out.println(" : " + i);
try {
if (Thread.currentThread().getName().equals("t1"))
Thread.sleep(200);
else
Thread.sleep(100);
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start();
// t1.start();
t2.start();
}
}运行结果为:
引用: t1 : 0 t2 : 0 t2 : 1 t1 : 1 t2 : 2 t2 : 3 t1 : 2 t2 : 4 t1 : 3 t1 : 4
由于线程t1调用了sleep(200),而线程t2调用了sleep(100),所以线程t2处于停滞状态的时间是线程t1的一半,从从结果反映出来的就是线程t2打印两倍次线程t1才打印一次。
2.3 yield() 1) 通过yield ()函数,可使线程进入可执行状态,排程器从可执行状态的线程中重新进行排程。所以调用了yield()的函数也有可能马上被执行。 2) 当调用yield ()函数后,线程不会释放它的“锁标志”。 例14:
view plaincopy to clipboardprint?
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
for (int i = 0; i < 4; i++) {
System.out.println(Thread.currentThread().getName() + " : " + i);
Thread.yield();
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
new Thread(t1).start();
new Thread(t1).start();// (1)
// new Thread(t2).start(); //(2)
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
for (int i = 0; i < 4; i++) {
System.out.println(Thread.currentThread().getName() + " : " + i);
Thread.yield();
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
new Thread(t1).start();
new Thread(t1).start();// (1)
// new Thread(t2).start(); //(2)
}
}运行结果为:
引用: Thread-0 : 0 Thread-0 : 1 Thread-0 : 2 Thread-0 : 3 Thread-1 : 0 Thread-1 : 1 Thread-1 : 2 Thread-1 : 3
从结果可知调用yield()时并不会释放对象的“锁标志”。 如果把代码(1)注释掉,并去掉代码(2)的注释,结果为:
引用: Thread-0 : 0 Thread-1 : 0 Thread-0 : 1 Thread-1 : 1 Thread-0 : 2 Thread-1 : 2 Thread-0 : 3 Thread-1 : 3
从结果可知,虽然t1线程调用了yield(),但它马上又被执行了。 2.4 sleep()和yield()的区别 1) sleep()使当前线程进入停滞状态,所以执行sleep()的线程在指定的时间内肯定不会执行;yield()只是使当前线程重新回到可执行状态,所以执行yield()的线程有可能在进入到可执行状态后马上又被执行。 2) sleep()可使优先级低的线程得到执行的机会,当然也可以让同优先级和高优先级的线程有执行的机会;yield()只能使同优先级的线程有执行的机会。 例15:
view plaincopy to clipboardprint?
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public void run() {
for (int i = 0; i < 4; i++) {
System.out.println(Thread.currentThread().getName() + " : " + i);
// Thread.yield(); (1)
/* (2) */
try {
Thread.sleep(300);
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.setPriority(Thread.MAX_PRIORITY);
t2.setPriority(Thread.MIN_PRIORITY);
t1.start();
t2.start();
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public void run() {
for (int i = 0; i < 4; i++) {
System.out.println(Thread.currentThread().getName() + " : " + i);
// Thread.yield(); (1)
/* (2) */
try {
Thread.sleep(300);
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.setPriority(Thread.MAX_PRIORITY);
t2.setPriority(Thread.MIN_PRIORITY);
t1.start();
t2.start();
}
}运行结果为:
引用: t1 : 0 t2 : 0 t1 : 1 t2 : 1 t1 : 2 t2 : 2 t1 : 3 t2 : 3
由结果可见,通过sleep()可使优先级较低的线程有执行的机会。注释掉代码(2),并去掉代码(1)的注释,结果为:
引用: t1 : 0 t1 : 1 t2 : 0 t1 : 2 t1 : 3 t2 : 1 t2 : 2 t2 : 3
可见,调用yield(),不同优先级的线程永远不会得到执行机会。 2.5 join() 使调用join()的线程执行完毕后才能执行其它线程,在一定意义上,它可以实现同步的功能。 例16:
view plaincopy to clipboardprint?
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public void run() {
for (int i = 0; i < 4; i++) {
System.out.println(" " + i);
try {
Thread.sleep(300);
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start();
try {
t1.join();
} catch (InterruptedException e) {}
t2.start();
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public void run() {
for (int i = 0; i < 4; i++) {
System.out.println(" " + i);
try {
Thread.sleep(300);
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start();
try {
t1.join();
} catch (InterruptedException e) {}
t2.start();
}
}运行结果为:
引用: 0 1 2 3 0 1 2 3
3. class Object下常用的线程函数 wait()、notify()和notifyAll()这三个函数由java.lang.Object类提供,用于协调多个线程对共享数据的存取。
3.1 wait()、notify()和notifyAll()
1) wait()函数有两种形式:第一种形式接受一个毫秒值,用于在指定时间长度内暂停线程,使线程进入停滞状态。第二种形式为不带参数,代表waite()在notify()或notifyAll()之前会持续停滞。
2) 当对一个对象执行notify()时,会从线程等待池中移走该任意一个线程,并把它放到锁标志等待池中;当对一个对象执行notifyAll()时,会从线程等待池中移走所有该对象的所有线程,并把它们放到锁标志等待池中。
3) 当调用wait()后,线程会释放掉它所占有的“锁标志”,从而使线程所在对象中的其它synchronized数据可被别的线程使用。
例17: 下面,我们将对例11中的例子进行修改
view plaincopy to clipboardprint?
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
if (shareVar == 0) {
for (int i = 0; i < 10; i++) {
shareVar++;
if (shareVar == 5) {
try {
this.wait();// (4)
} catch (InterruptedException e) {}
}
}
}
if (shareVar != 0) {
System.out.print(Thread.currentThread().getName());
System.out.println(" shareVar = " + shareVar);
this.notify();// (5)
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
new Thread(t1).start();// (1)
// new Thread(t1).start(); // (2)
new Thread(t2).start();// (3)
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
if (shareVar == 0) {
for (int i = 0; i < 10; i++) {
shareVar++;
if (shareVar == 5) {
try {
this.wait();// (4)
} catch (InterruptedException e) {}
}
}
}
if (shareVar != 0) {
System.out.print(Thread.currentThread().getName());
System.out.println(" shareVar = " + shareVar);
this.notify();// (5)
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
new Thread(t1).start();// (1)
// new Thread(t1).start(); // (2)
new Thread(t2).start();// (3)
}
}运行结果为:
引用: Thread-1 shareVar = 5
因为t1和t2是两个不同对象,所以线程t2调用代码(5)不能唤起线程t1。如果去掉代码(2)的注释,并注释掉代码(3),结果为:
引用: Thread-1 shareVar = 5 Thread-0 shareVar = 10
这是因为,当代码(1)的线程执行到代码(4)时,它进入停滞状态,并释放对象的锁状态。接着,代码(2)的线程执行run(),由于此时shareVar值为5,所以执行打印语句并调用代码(5)使代码(1)的线程进入可执行状态,然后代码(2)的线程结束。当代码(1)的线程重新执行后,它接着执行for()循环一直到shareVar=10,然后打印shareVar。
3.2 wait()、notify()和synchronized
waite()和notify()因为会对对象的“锁标志”进行操作,所以它们必须在synchronized函数或synchronized block中进行调用。如果在non-synchronized函数或non-synchronized block中进行调用,虽然能编译通过,但在运行时会发生IllegalMonitorStateException的异常。
例18:
view plaincopy to clipboardprint?
class TestThreadMethod extends Thread {
public int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
new Notifier(this);
}
public synchronized void run() {
if (shareVar == 0) {
for (int i = 0; i < 5; i++) {
shareVar++;
System.out.println("i = " + shareVar);
try {
System.out.println("wait......");
this.wait();
} catch (InterruptedException e) {}
}
}
}
}
class Notifier extends Thread {
private TestThreadMethod ttm;
Notifier(TestThreadMethod t) {
ttm = t;
start();
}
public void run() {
while (true) {
try {
sleep(2000);
} catch (InterruptedException e) {}
/* 1 要同步的不是当前对象的做法 */
synchronized (ttm) {
System.out.println("notify......");
ttm.notify();
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
t1.start();
}
}
class TestThreadMethod extends Thread {
public int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
new Notifier(this);
}
public synchronized void run() {
if (shareVar == 0) {
for (int i = 0; i < 5; i++) {
shareVar++;
System.out.println("i = " + shareVar);
try {
System.out.println("wait......");
this.wait();
} catch (InterruptedException e) {}
}
}
}
}
class Notifier extends Thread {
private TestThreadMethod ttm;
Notifier(TestThreadMethod t) {
ttm = t;
start();
}
public void run() {
while (true) {
try {
sleep(2000);
} catch (InterruptedException e) {}
/* 1 要同步的不是当前对象的做法 */
synchronized (ttm) {
System.out.println("notify......");
ttm.notify();
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
t1.start();
}
}运行结果为:
引用: i = 1 wait...... notify...... i = 2 wait...... notify...... i = 3 wait...... notify...... i = 4 wait...... notify...... i = 5 wait...... notify...... notify...... notify......
4. wait()、notify()、notifyAll()和suspend()、resume()、sleep()的讨论
4.1 这两组函数的区别
1) wait()使当前线程进入停滞状态时,还会释放当前线程所占有的“锁标志”,从而使线程对象中的synchronized资源可被对象中别的线程使用;而suspend()和sleep()使当前线程进入停滞状态时不会释放当前线程所占有的“锁标志”。
2) 前一组函数必须在synchronized函数或synchronized block中调用,否则在运行时会产生错误;而后一组函数可以non-synchronized函数和synchronized block中调用。
4.2 这两组函数的取舍 Java2已不建议使用后一组函数。因为在调用wait()时不会释放当前线程所取得的“锁标志”,这样很容易造成“死锁”。
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/badwing/archive/2008/06/16/2554338.aspx
从操作系统的角度讲,os会维护一个ready queue(就绪的线程队列)。并且在某一时刻cpu只为ready queue中位于队列头部的线程服务。 但是当前正在被服务的线程可能觉得cpu的服务质量不够好,于是提前退出,这就是yield。 或者当前正在被服务的线程需要睡一会,醒来后继续被服务,这就是sleep。
sleep方法不推荐使用,可用wait。 线程退出最好自己实现,在运行状态中一直检验一个状态,如果这个状态为真,就一直运行,如果外界更改了这个状态变量,那么线程就停止运行。
sleep()使当前线程进入停滞状态,所以执行sleep()的线程在指定的时间内肯定不会执行;yield()只是使当前线程重新回到可执行状态,所以执行yield()的线程有可能在进入到可执行状态后马上又被执行。 sleep()可使优先级低的线程得到执行的机会,当然也可以让同优先级和高优先级的线程有执行的机会;yield()只能使同优先级的线程有执行的机会。
当调用wait()后,线程会释放掉它所占有的“锁标志”,从而使线程所在对象中的其它synchronized数据可被别的线程使用。
waite()和notify()因为会对对象的“锁标志”进行操作,所以它们必须在synchronized函数或synchronized block中进行调用。如果在non-synchronized函数或non-synchronized block中进行调用,虽然能编译通过,但在运行时会发生IllegalMonitorStateException的异常。
彻底明白多线程通信机制:
线程间的通信 1. 线程的几种状态 线程有四种状态,任何一个线程肯定处于这四种状态中的一种:
1) 产生(New):线程对象已经产生,但尚未被启动,所以无法执行。如通过new产生了一个线程对象后没对它调用start()函数之前。
2) 可执行(Runnable):每个支持多线程的系统都有一个排程器,排程器会从线程池中选择一个线程并启动它。当一个线程处于可执行状态时,表示它可能正处于线程池中等待排排程器启动它;也可能它已正在执行。如执行了一个线程对象的start()方法后,线程就处于可执行状态,但显而易见的是此时线程不一定正在执行中。
3) 死亡(Dead):当一个线程正常结束,它便处于死亡状态。如一个线程的run()函数执行完毕后线程就进入死亡状态。 4) 停滞(Blocked):当一个线程处于停滞状态时,系统排程器就会忽略它,不对它进行排程。当处于停滞状态的线程重新回到可执行状态时,它有可能重新执行。如通过对一个线程调用wait()函数后,线程就进入停滞状态,只有当再次对该线程调用notify或notifyAll后它才能再次回到可执行状态。
2. class Thread下的常用函数函数 2.1 suspend()、resume() 1) 通过suspend()函数,可使线程进入停滞状态。通过suspend()使线程进入停滞状态后,除非收到resume()消息,否则该线程不会变回可执行状态。 2) 当调用suspend()函数后,线程不会释放它的“锁标志”。 例11:
view plaincopy to clipboardprint?
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start();// (5)
// t1.start(); //(3)
t2.start();// (4)
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
if (shareVar == 0) {
for (int i = 0; i < 5; i++) {
shareVar++;
if (shareVar == 5) {
this.suspend();// (1)
}
}
} else {
System.out.print(Thread.currentThread().getName());
System.out.println(" shareVar = " + shareVar);
this.resume();// (2)
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start();// (5)
// t1.start(); //(3)
t2.start();// (4)
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
if (shareVar == 0) {
for (int i = 0; i < 5; i++) {
shareVar++;
if (shareVar == 5) {
this.suspend();// (1)
}
}
} else {
System.out.print(Thread.currentThread().getName());
System.out.println(" shareVar = " + shareVar);
this.resume();// (2)
}
}
}运行结果为:
t2 shareVar = 5 i. 当代码(5)的t1所产生的线程运行到代码(1)处时,该线程进入停滞状态。然后排程器从线程池中唤起代码(4)的t2所产生的线程,此时shareVar值不为0,所以执行else中的语句。 ii. 也许你会问,那执行代码(2)后为什么不会使t1进入可执行状态呢?正如前面所说,t1和t2是两个不同对象的线程,而代码(1)和(2)都只对当前对象进行操作,所以t1所产生的线程执行代码(1)的结果是对象t1的当前线程进入停滞状态;而t2所产生的线程执行代码(2)的结果是把对象t2中的所有处于停滞状态的线程调回到可执行状态。 iii. 那现在把代码(4)注释掉,并去掉代码(3)的注释,是不是就能使t1重新回到可执行状态呢?运行结果是什么也不输出。为什么会这样呢?也许你会认为,当代码(5)所产生的线程执行到代码(1)时,它进入停滞状态;而代码(3)所产生的线程和代码(5)所产生的线程是属于同一个对象的,那么就当代码(3)所产生的线程执行到代码(2)时,就可使代码(5)所产生的线程执行回到可执行状态。但是要清楚,suspend()函数只是让当前线程进入停滞状态,但并不释放当前线程所获得的“锁标志”。所以当代码(5)所产生的线程进入停滞状态时,代码(3)所产生的线程仍不能启动,因为当前对象的“锁标志”仍被代码(5)所产生的线程占有。
2.2 sleep() 1) sleep ()函数有一个参数,通过参数可使线程在指定的时间内进入停滞状态,当指定的时间过后,线程则自动进入可执行状态。 2) 当调用sleep ()函数后,线程不会释放它的“锁标志”。 例12:
view plaincopy to clipboardprint?
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
for (int i = 0; i < 3; i++) {
System.out.print(Thread.currentThread().getName());
System.out.println(" : " + i);
try {
Thread.sleep(100);// (4)
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start(); // (1)
t1.start(); // (2)
// new Thread(t1).start();// (4)
// new Thread(t1).start();// (5)
// new Thread(t2).start(); (3)t2.start();
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
for (int i = 0; i < 3; i++) {
System.out.print(Thread.currentThread().getName());
System.out.println(" : " + i);
try {
Thread.sleep(100);// (4)
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start(); // (1)
t1.start(); // (2)
// new Thread(t1).start();// (4)
// new Thread(t1).start();// (5)
// new Thread(t2).start(); (3)t2.start();
}
}运行结果为:
引用: Exception in thread "main" java.lang.IllegalThreadStateException t1 : 0 at java.lang.Thread.start(Unknown Source) at MyTest.main(MyTest.java:26) t1 : 1 t1 : 2
可见,对于同一个对象直接启动2次会出现异常 我们将(1)和(2)注释掉,改成 (4)和(5)的代码,则运行结果为:
引用: Thread-0 : 0 Thread-0 : 1 Thread-0 : 2 Thread-1 : 0 Thread-1 : 1 Thread-1 : 2
由结果可证明,虽然在run()中执行了sleep(),但是它不会释放对象的“锁标志”,所以除非代码(1)的线程执行完run()函数并释放对象的“锁标志”,否则代码(2)的线程永远不会执行。
如果把代码(2)注释掉,并去掉代码(3)的注释,结果将变为:
引用: Thread-0 : 0 Thread-1 : 0 Thread-0 : 1 Thread-1 : 1 Thread-1 : 2 Thread-0 : 2
由于t1和t2是两个对象的线程,所以当线程t1通过sleep()进入停滞时,排程器会从线程池中调用其它的可执行线程,从而t2线程被启动。
例13:
view plaincopy to clipboardprint?
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
for (int i = 0; i < 5; i++) {
System.out.print(Thread.currentThread().getName());
System.out.println(" : " + i);
try {
if (Thread.currentThread().getName().equals("t1"))
Thread.sleep(200);
else
Thread.sleep(100);
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start();
// t1.start();
t2.start();
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
for (int i = 0; i < 5; i++) {
System.out.print(Thread.currentThread().getName());
System.out.println(" : " + i);
try {
if (Thread.currentThread().getName().equals("t1"))
Thread.sleep(200);
else
Thread.sleep(100);
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start();
// t1.start();
t2.start();
}
}运行结果为:
引用: t1 : 0 t2 : 0 t2 : 1 t1 : 1 t2 : 2 t2 : 3 t1 : 2 t2 : 4 t1 : 3 t1 : 4
由于线程t1调用了sleep(200),而线程t2调用了sleep(100),所以线程t2处于停滞状态的时间是线程t1的一半,从从结果反映出来的就是线程t2打印两倍次线程t1才打印一次。
2.3 yield() 1) 通过yield ()函数,可使线程进入可执行状态,排程器从可执行状态的线程中重新进行排程。所以调用了yield()的函数也有可能马上被执行。 2) 当调用yield ()函数后,线程不会释放它的“锁标志”。 例14:
view plaincopy to clipboardprint?
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
for (int i = 0; i < 4; i++) {
System.out.println(Thread.currentThread().getName() + " : " + i);
Thread.yield();
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
new Thread(t1).start();
new Thread(t1).start();// (1)
// new Thread(t2).start(); //(2)
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
for (int i = 0; i < 4; i++) {
System.out.println(Thread.currentThread().getName() + " : " + i);
Thread.yield();
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
new Thread(t1).start();
new Thread(t1).start();// (1)
// new Thread(t2).start(); //(2)
}
}运行结果为:
引用: Thread-0 : 0 Thread-0 : 1 Thread-0 : 2 Thread-0 : 3 Thread-1 : 0 Thread-1 : 1 Thread-1 : 2 Thread-1 : 3
从结果可知调用yield()时并不会释放对象的“锁标志”。 如果把代码(1)注释掉,并去掉代码(2)的注释,结果为:
引用: Thread-0 : 0 Thread-1 : 0 Thread-0 : 1 Thread-1 : 1 Thread-0 : 2 Thread-1 : 2 Thread-0 : 3 Thread-1 : 3
从结果可知,虽然t1线程调用了yield(),但它马上又被执行了。 2.4 sleep()和yield()的区别 1) sleep()使当前线程进入停滞状态,所以执行sleep()的线程在指定的时间内肯定不会执行;yield()只是使当前线程重新回到可执行状态,所以执行yield()的线程有可能在进入到可执行状态后马上又被执行。 2) sleep()可使优先级低的线程得到执行的机会,当然也可以让同优先级和高优先级的线程有执行的机会;yield()只能使同优先级的线程有执行的机会。 例15:
view plaincopy to clipboardprint?
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public void run() {
for (int i = 0; i < 4; i++) {
System.out.println(Thread.currentThread().getName() + " : " + i);
// Thread.yield(); (1)
/* (2) */
try {
Thread.sleep(300);
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.setPriority(Thread.MAX_PRIORITY);
t2.setPriority(Thread.MIN_PRIORITY);
t1.start();
t2.start();
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public void run() {
for (int i = 0; i < 4; i++) {
System.out.println(Thread.currentThread().getName() + " : " + i);
// Thread.yield(); (1)
/* (2) */
try {
Thread.sleep(300);
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.setPriority(Thread.MAX_PRIORITY);
t2.setPriority(Thread.MIN_PRIORITY);
t1.start();
t2.start();
}
}运行结果为:
引用: t1 : 0 t2 : 0 t1 : 1 t2 : 1 t1 : 2 t2 : 2 t1 : 3 t2 : 3
由结果可见,通过sleep()可使优先级较低的线程有执行的机会。注释掉代码(2),并去掉代码(1)的注释,结果为:
引用: t1 : 0 t1 : 1 t2 : 0 t1 : 2 t1 : 3 t2 : 1 t2 : 2 t2 : 3
可见,调用yield(),不同优先级的线程永远不会得到执行机会。 2.5 join() 使调用join()的线程执行完毕后才能执行其它线程,在一定意义上,它可以实现同步的功能。 例16:
view plaincopy to clipboardprint?
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public void run() {
for (int i = 0; i < 4; i++) {
System.out.println(" " + i);
try {
Thread.sleep(300);
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start();
try {
t1.join();
} catch (InterruptedException e) {}
t2.start();
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public void run() {
for (int i = 0; i < 4; i++) {
System.out.println(" " + i);
try {
Thread.sleep(300);
} catch (InterruptedException e) {
System.out.println("Interrupted");
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
t1.start();
try {
t1.join();
} catch (InterruptedException e) {}
t2.start();
}
}运行结果为:
引用: 0 1 2 3 0 1 2 3
3. class Object下常用的线程函数 wait()、notify()和notifyAll()这三个函数由java.lang.Object类提供,用于协调多个线程对共享数据的存取。
3.1 wait()、notify()和notifyAll()
1) wait()函数有两种形式:第一种形式接受一个毫秒值,用于在指定时间长度内暂停线程,使线程进入停滞状态。第二种形式为不带参数,代表waite()在notify()或notifyAll()之前会持续停滞。
2) 当对一个对象执行notify()时,会从线程等待池中移走该任意一个线程,并把它放到锁标志等待池中;当对一个对象执行notifyAll()时,会从线程等待池中移走所有该对象的所有线程,并把它们放到锁标志等待池中。
3) 当调用wait()后,线程会释放掉它所占有的“锁标志”,从而使线程所在对象中的其它synchronized数据可被别的线程使用。
例17: 下面,我们将对例11中的例子进行修改
view plaincopy to clipboardprint?
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
if (shareVar == 0) {
for (int i = 0; i < 10; i++) {
shareVar++;
if (shareVar == 5) {
try {
this.wait();// (4)
} catch (InterruptedException e) {}
}
}
}
if (shareVar != 0) {
System.out.print(Thread.currentThread().getName());
System.out.println(" shareVar = " + shareVar);
this.notify();// (5)
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
new Thread(t1).start();// (1)
// new Thread(t1).start(); // (2)
new Thread(t2).start();// (3)
}
}
class TestThreadMethod extends Thread {
public static int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
}
public synchronized void run() {
if (shareVar == 0) {
for (int i = 0; i < 10; i++) {
shareVar++;
if (shareVar == 5) {
try {
this.wait();// (4)
} catch (InterruptedException e) {}
}
}
}
if (shareVar != 0) {
System.out.print(Thread.currentThread().getName());
System.out.println(" shareVar = " + shareVar);
this.notify();// (5)
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
TestThreadMethod t2 = new TestThreadMethod("t2");
new Thread(t1).start();// (1)
// new Thread(t1).start(); // (2)
new Thread(t2).start();// (3)
}
}运行结果为:
引用: Thread-1 shareVar = 5
因为t1和t2是两个不同对象,所以线程t2调用代码(5)不能唤起线程t1。如果去掉代码(2)的注释,并注释掉代码(3),结果为:
引用: Thread-1 shareVar = 5 Thread-0 shareVar = 10
这是因为,当代码(1)的线程执行到代码(4)时,它进入停滞状态,并释放对象的锁状态。接着,代码(2)的线程执行run(),由于此时shareVar值为5,所以执行打印语句并调用代码(5)使代码(1)的线程进入可执行状态,然后代码(2)的线程结束。当代码(1)的线程重新执行后,它接着执行for()循环一直到shareVar=10,然后打印shareVar。
3.2 wait()、notify()和synchronized
waite()和notify()因为会对对象的“锁标志”进行操作,所以它们必须在synchronized函数或synchronized block中进行调用。如果在non-synchronized函数或non-synchronized block中进行调用,虽然能编译通过,但在运行时会发生IllegalMonitorStateException的异常。
例18:
view plaincopy to clipboardprint?
class TestThreadMethod extends Thread {
public int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
new Notifier(this);
}
public synchronized void run() {
if (shareVar == 0) {
for (int i = 0; i < 5; i++) {
shareVar++;
System.out.println("i = " + shareVar);
try {
System.out.println("wait......");
this.wait();
} catch (InterruptedException e) {}
}
}
}
}
class Notifier extends Thread {
private TestThreadMethod ttm;
Notifier(TestThreadMethod t) {
ttm = t;
start();
}
public void run() {
while (true) {
try {
sleep(2000);
} catch (InterruptedException e) {}
/* 1 要同步的不是当前对象的做法 */
synchronized (ttm) {
System.out.println("notify......");
ttm.notify();
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
t1.start();
}
}
class TestThreadMethod extends Thread {
public int shareVar = 0;
public TestThreadMethod(String name) {
super(name);
new Notifier(this);
}
public synchronized void run() {
if (shareVar == 0) {
for (int i = 0; i < 5; i++) {
shareVar++;
System.out.println("i = " + shareVar);
try {
System.out.println("wait......");
this.wait();
} catch (InterruptedException e) {}
}
}
}
}
class Notifier extends Thread {
private TestThreadMethod ttm;
Notifier(TestThreadMethod t) {
ttm = t;
start();
}
public void run() {
while (true) {
try {
sleep(2000);
} catch (InterruptedException e) {}
/* 1 要同步的不是当前对象的做法 */
synchronized (ttm) {
System.out.println("notify......");
ttm.notify();
}
}
}
}
public class MyTest {
public static void main(String[] args) {
TestThreadMethod t1 = new TestThreadMethod("t1");
t1.start();
}
}运行结果为:
引用: i = 1 wait...... notify...... i = 2 wait...... notify...... i = 3 wait...... notify...... i = 4 wait...... notify...... i = 5 wait...... notify...... notify...... notify......
4. wait()、notify()、notifyAll()和suspend()、resume()、sleep()的讨论
4.1 这两组函数的区别
1) wait()使当前线程进入停滞状态时,还会释放当前线程所占有的“锁标志”,从而使线程对象中的synchronized资源可被对象中别的线程使用;而suspend()和sleep()使当前线程进入停滞状态时不会释放当前线程所占有的“锁标志”。
2) 前一组函数必须在synchronized函数或synchronized block中调用,否则在运行时会产生错误;而后一组函数可以non-synchronized函数和synchronized block中调用。
4.2 这两组函数的取舍 Java2已不建议使用后一组函数。因为在调用wait()时不会释放当前线程所取得的“锁标志”,这样很容易造成“死锁”。
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/badwing/archive/2008/06/16/2554338.aspx
发表评论
-
【转】JDBC使用TNS连接多节点Oracle
2015-04-28 09:06 528原创作品,允许转载 ... -
[转]MyEclipse 设置注释模板
2012-06-18 16:35 994设置注释模板的入口: Window->Prefer ... -
[转]java 解惑你知道多少 2
2011-04-21 21:13 73336. 属性只能被隐藏 Java代码 1.class P { ... -
[转]java解惑你知多少 1
2011-04-21 21:12 1148数值表达式1. 奇偶判断不要使用 i % 2 == 1 来 ... -
[转]正则表达式特殊字符的转义
2010-12-12 23:16 764点的转义:. ==> \\u002E美元符号的转义:$ ... -
【转】JAVA深拷贝与浅拷贝
2010-11-18 16:19 759深拷贝与浅拷贝的区别1.浅复制与深复制概念⑴浅复制(浅克隆)被 ... -
HtmlClient支持AJAX
2010-08-30 08:44 926WebClient webClient = new WebCl ... -
[转]HttpClient 学习整理
2010-07-20 14:11 793HttpClient 学习整理 HttpCli ... -
[转]用ReflectionFactory实现不调用构造参数创建对象
2010-07-06 11:45 1099那天在sun的论坛上漂着,不经意发现了一篇帖子,大概意思是想 ... -
[转]收集常用正则表达式
2010-06-16 23:22 730正则表达式用于字符串处理、表单验证等场合,实用高效。现 ... -
使用Spring的JdbcTemplate调用Oracle的存储过程
2010-06-05 21:01 3294Spring的SimpleJdbcTemplate将 ... -
Java5中的注释Annotation
2010-06-05 19:48 1273注释是java5中的新特性 ... -
Java获取操作系统信息
2010-06-04 16:34 1092Java代码 import java.util.Proper ... -
[转] Tomcat中JAVA定时器实现
2010-05-24 23:00 1806好多朋友用过Windows的任务计划,也有不少程序迷自己曾写过 ... -
[转]详解JAVA POI导出EXCEL报表的操作(包括各种格式及样式的实现)
2010-05-12 15:08 2030这两天在做项目时,最 ... -
struts2上传下载所用文件类型[扩展名]对应一览表
2010-04-05 14:42 1715<!-- ===================== ... -
解决java.net.SocketException: No buffer space available (maximum connections reach
2010-03-24 10:16 2302严重: Catalina.stop: java.net.Soc ... -
[转]使用JAVA中的动态代理实现数据库连接池
2010-03-22 23:08 737数据库连接池在编写应用服务是经常需要用到的模块,太 ... -
Log4j使用总结[转]
2010-03-07 00:09 699一、介绍 Log4j是Apache的一个开放源代码项目,通过使 ... -
JTree用法及JTree使用经验总结 [转]
2010-03-05 13:03 1222import java.awt.Dimension;impo ...
相关推荐
Java中的多线程编程涉及到许多关键概念,包括`yield()`, `sleep()`, 和 `wait()`,这些都是控制线程执行的重要方法。理解它们的区别对于编写高效并发程序至关重要。 首先,`yield()`方法的作用是让当前正在执行的...
`sleep`, `yield`, 和 `wait` 是 Java 中用于线程管理的三个重要方法,它们各自有着不同的功能和用途。理解它们的区别有助于编写出更加高效和可控的多线程程序。 1. **sleep() 方法** - `Thread.sleep(millisecond...
以上就是对Java线程中wait、await、sleep、yield、join用法的总结。这些方法在实际开发中,对于控制多线程运行的时序和协调非常关键。理解这些方法的正确使用方式是掌握Java并发编程的基础。同时,使用时需特别注意...
本文将详细解析线程中`sleep()`, `join()`, `yield()`, 和 `wait()` 四个方法的区别。 1. `sleep()` `sleep()` 方法是 `java.lang.Thread` 类的一个静态方法,它允许当前正在执行的线程在指定的毫秒数内暂停执行。...
Java线程让步(Yield)是Java多线程编程中的一个重要概念,它涉及到线程调度和并发控制。在多线程环境下,线程让步意味着一个正在运行的线程主动放弃当前的时间片,以便其他就绪状态的线程有机会执行。这与线程的...
本文将深入探讨Java中的四个关键方法:`sleep()`, `wait()`, `yield()`和`join()`,以及它们各自的特点和区别。 首先,我们来看`sleep()`和`wait()`的区别: 1. **来源不同**:`sleep()`是`Thread`类的方法,它...
"高薪程序员面试题精讲系列63之说说sleep()、yield()、join()、wait()的区别" 本资源主要讲解了Java中四个常用的线程控制方法:sleep()、yield()、join()和wait(),它们是Java多线程编程中的重要...
在Java多线程编程中,理解并正确使用`yield`和`join`方法是至关重要的。这两个方法都属于线程控制策略的一部分,但它们的作用和使用场景有所不同。 首先,我们来详细探讨`Thread.yield()`方法。这个方法的目的是让...
T03_Sleep_Yield_Join.java
Pb 中 Yield() 函数的使用 Yield() 函数是 PowerBuilder 中一个非常有用的函数,它可以将控制权转移给其他图形对象,包括非 PowerBuilder 对象。该函数检测消息队列,如果有消息,就把消息取出。该函数返回布尔型值...
Java yield运算符
之前,我讨论了一个wait()和sleep()方法区别的问题,这一次,我将会讨论join()和yield()方法的区别。坦白的说,实际上我并没有用过其中任何一个方法,所以,如果你感觉有不恰当的地方,请提出讨论。 Java线程调度...
在Java多线程编程中,`Thread.sleep()`、中断机制以及`Thread.yield()`方法都是控制线程行为的重要工具。接下来我们将深入探讨这三个知识点,并通过示例代码来展示它们的实际应用。 一、`Thread.sleep()`方法 `...
本文将详细解析Java中的线程让步方法`yield()`以及线程休眠方法`sleep()`,并与线程等待的`wait()`方法进行对比。 首先,线程让步`yield()`方法的主要作用是让当前线程主动放弃执行权,让其他处于就绪状态且具有...
Java线程让步yield用法实例分析 Java线程让步yield用法是一种线程调度机制,允许当前线程让步给其他线程,以实现线程之间的协作和同步。yield()方法是一个和sleep()方法有点类似的方法,它是Thread类提供的一个静态...
Java 中的 yield() 方法是一个静态方法,它的主要作用是让当前线程由“运行状态”进入到“就绪状态”,从而让其他具有相同优先级的等待线程获取执行权。下面将详细介绍 yield() 方法的实现过程和示例代码。 一、...
但是,由于其效果依赖于操作系统,并且可能不会立即生效,所以在设计并发程序时,应谨慎使用,更多地关注线程同步和通信机制,如`synchronized`关键字、`wait()`, `notify()`, `notifyAll()`方法以及`java.util....
Java多线程是Java编程中的一个重要概念,它允许程序同时执行多个任务,提高了程序的效率和响应速度。在Java中,实现多线程有两种主要方式:继承Thread类和实现Runnable接口。 1. 继承Thread类: 当我们创建一个新...
sleep、wait 和 join 是 Java 中的线程控制方法。sleep 方法可以让线程暂停执行,wait 方法可以让线程等待对象锁,join 方法可以让线程等待目标线程执行完成。 yield yield 方法可以让线程礼让,释放 CPU 资源给...
java线程分析java project例子,里面分析了sleep(),join(),yield()和wait以及notify等方法的使用以及需要注意的地方。