jdk/src/share/classes/java/lang/Thread.java
/**
* Waits for this thread to die.
*
* <p> An invocation of this method behaves in exactly the same
* way as the invocation
*
* <blockquote>
* {@linkplain #join(long) join}{@code (0)}
* </blockquote>
*
* @throws InterruptedException
* if any thread has interrupted the current thread. The
* <i>interrupted status</i> of the current thread is
* cleared when this exception is thrown.
*/
public final void join() throws InterruptedException {
{- -------------------------------------------
(1) java.lang.Thread.join() を呼び出すだけ.
---------------------------------------- -}
join(0);
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.