English 中文(简体)
处决是否通过执行等待和加入()达到“等待”状态?
原标题:Does a thread of execution goes to "waiting" state by executing wait() and join() both?

有3个州的read生,但都无法运行:

  1. Sleeping
  2. Blocked
  3. Waiting

当一个胎面穿透睡觉的方法时,它就进入了SLEEPING状态,时间由它的论点确定(对一些微秒而言)。

当一个read子由于同步方法或组块而等待另一条read子获得的物体上锁时,由该read子接下去。

因此,我们是否可以说,一线read子在安装时就进入电离层?

撒马是呼吁加入(a)点。

因此,我们是否可以说,两个等待(从java.lang.Object)和加入(从java.lang.Thread)都把一个可怕的状态转移到世界投资行动?

问题回答

http://docs.oracle.com/javase/6/docs/api/java/lang/Thread.State.html#WAITING” rel=“noreferer”>javadoc of Thread。 国家:

公开的静态定线。 国家

Thread state for a waiting thread. A thread is in the waiting state due to calling one of the following methods:

    Object.wait with no timeout
    Thread.join with no timeout
    LockSupport.park

A thread in the waiting state is waiting for another thread to perform a particular action. For example, a thread that has called Object.wait() on an object is waiting for another thread to call Object.notify() or Object.notifyAll() on that object. A thread that has called Thread.join() is waiting for a specified thread to terminate.





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签