本篇文章给大家谈谈java 获取线程状态,以及JAVA线程的状态对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。
今天给各位分享java 获取线程状态的知识,其中也会对JAVA线程的状态进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!
本文目录一览:
java获取当前线程状态。
java线程的状态有下面几种状态
java 获取线程状态:
/**
* Thread state for a thread which has not yet started.
*/
NEW,
/**
* Thread state for a runnable thread. A thread in the runnable
* state is executing in the Java virtual machine but it may
* be waiting for other resources from the operating system
* such as processor.
*/
RUNNABLE,
/**
* Thread state for a thread blocked waiting for a monitor lock.
* A thread in the blocked state is waiting for a monitor lock
* to enter a synchronized block/method or
* reenter a synchronized block/method after calling
* {@link Object#wait() Object.wait}.
*/
BLOCKED,
/**
* Thread state for a waiting thread.
* A thread is in the waiting state due to calling one of the
* following methods:
* <ul
* <li{@link Object#wait() Object.wait} with no timeout</li
* <li{@link #join() Thread.join} with no timeout</li
* <li{@link LockSupport#park() LockSupport.park}</li
* </ul
*
* <pA thread in the waiting state is waiting for another thread to
* perform a particular action.
*
* For example, a thread that has called <ttObject.wait()</tt
* on an object is waiting for another thread to call
* <ttObject.notify()</tt or <ttObject.notifyAll()</tt on
* that object. A thread that has called <ttThread.join()</tt
* is waiting for a specified thread to terminate.
*/
WAITING,
/**
* Thread state for a waiting thread with a specified waiting time.
* A thread is in the timed waiting state due to calling one of
* the following methods with a specified positive waiting time:
* <ul
* <li{@link #sleep Thread.sleep}</li
* <li{@link Object#wait(long) Object.wait} with timeout</li
* <li{@link #join(long) Thread.join} with timeout</li
* <li{@link LockSupport#parkNanos LockSupport.parkNanos}</li
* <li{@link LockSupport#parkUntil LockSupport.parkUntil}</li
* </ul
*/
TIMED_WAITING,
/**
* Thread state for a terminated thread.
* The thread has completed execution.
*/
TERMINATED;
java多线程有哪些状态?
初始态:一个线程调用了new方法之后,并在调用start方法之前的所处状态。
就绪:一旦线程调用了start 方法,线程就转到Runnable 状态。
阻塞/ NonRunnable:线程处于阻塞/NonRunnable状态,这是由两种可能性造成的:要么是因挂起而暂停的,要么是由于某些原因而阻塞的,例如包括等待IO请求的完成。
停止/退出:线程转到退出状态,这有两种可能性,要么是run方法执行结束,要么是调用了stop方法。
java怎么从一个类中获取另一个类中的线程的状态。
package a;
class A implements Runnable{
Thread t;
A(){
t=new Thread(this);
t.start();
}
@Override
public void run() {
for (int i=1;i<=3;i++){
try {
Thread.sleep(1000);
System.out.println(3-i);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
System.out.println("线程A停止了");
}
}
class B{
public void show(){
A a =new A();
for (int i=1;i<=10;i++){
try {
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(a.t.isAlive());
}
}
}
public class aaaaaaa{
public static void main(String args[]){
B b=new B();
b.show();
}
}
关于java 获取线程状态和JAVA线程的状态的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站。
java 获取线程状态的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于JAVA线程的状态、java 获取线程状态的信息别忘了在本站进行查找喔。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
暂时没有评论,来抢沙发吧~