3

Java には 2 つのコード ブロックがあります。

ブロック 1:

@Test
public void test1() {

    System.out.println("interrupt:" + Thread.currentThread().isInterrupted());
    Thread.currentThread().interrupt();
    System.out.println("interrupt:" + Thread.currentThread().isInterrupted());

}

出力:

interrupt:false
interrupt:true

ブロック 2:

@Test
public void test2() throws InterruptedException {
    Thread thread = new Thread(new Runnable() {
        @Override
        public void run() {
            System.out.println("running...");
        }
    });

    thread.interrupt();

    TimeUnit.SECONDS.sleep(2);

    System.out.println("interrupt:" + thread.isInterrupted());

    thread.start();

    TimeUnit.SECONDS.sleep(2);

    System.out.println("interrupt:" + thread.isInterrupted());

}

出力:

interrupt:false
running...
interrupt:false

だから、私の質問:

  1. interrupt:true呼び出し後に1つの印刷をinterrupt()ブロックするのに、2つをブロックしないのはなぜですか?
  2. interrupt() を呼び出した後、JVM は何をしますか?

ありがとう!

PS:ブロック 3:

@Test
public void test3() {
    Thread thread = new Thread(new Runnable() {
        @Override
        public void run() {
            System.out.println("running...");
        }
    });

    thread.interrupt();

    System.out.println("interrupt:" + thread.isInterrupted());

    // thread.start();
    //
    // thread.interrupt();
    //
    //
    // System.out.println("interrupt:" + thread.isInterrupted());

}

また、出力:interrupt:false

4

3 に答える 3

3
  • ブロック 1 では、自分自身を中断します。これにより、スレッドに中断フラグが「フラグ」付けられます。
  • ブロック 2 では、他のスレッドを中断します (それは生きていない - 開始されていません -)。

run() メソッドで試してください add Thread.sleep(5000); 割り込み前に開始します;-)

割り込みのしくみ

于 2013-01-06T13:38:48.160 に答える
2

とても簡単です。ドキュメントによるとsleep

InterruptedException - if another thread has interrupted the current thread. The interrupted status of the current thread is cleared when this exception is thrown.

呼び出しinterruptてスレッドがスリープ状態になると、例外がスローされ、単にinterruptedフラグがクリアされました。

ブロック 3:

ドキュメントによると:Interrupting a thread that is not alive need not have any effect.要約すると、スレッドがまだ開始されていない場合、interruptメソッドは機能しない可能性があります。

于 2013-01-06T13:31:07.910 に答える
1

java.lang.Threadのソース コードでは、interruptメソッドのドキュメントには次のように明確に記載されています。

生きていないスレッドを中断しても、何の効果もありません。

  888       /**
  889        * Interrupts this thread.
  890        *
  891        * <p> Unless the current thread is interrupting itself, which is
  892        * always permitted, the {@link #checkAccess() checkAccess} method
  893        * of this thread is invoked, which may cause a {@link
  894        * SecurityException} to be thrown.
  895        *
  896        * <p> If this thread is blocked in an invocation of the {@link
  897        * Object#wait() wait()}, {@link Object#wait(long) wait(long)}, or {@link
  898        * Object#wait(long, int) wait(long, int)} methods of the {@link Object}
  899        * class, or of the {@link #join()}, {@link #join(long)}, {@link
  900        * #join(long, int)}, {@link #sleep(long)}, or {@link #sleep(long, int)},
  901        * methods of this class, then its interrupt status will be cleared and it
  902        * will receive an {@link InterruptedException}.
  903        *
  904        * <p> If this thread is blocked in an I/O operation upon an {@link
  905        * java.nio.channels.InterruptibleChannel </code>interruptible
  906        * channel<code>} then the channel will be closed, the thread's interrupt
  907        * status will be set, and the thread will receive a {@link
  908        * java.nio.channels.ClosedByInterruptException}.
  909        *
  910        * <p> If this thread is blocked in a {@link java.nio.channels.Selector}
  911        * then the thread's interrupt status will be set and it will return
  912        * immediately from the selection operation, possibly with a non-zero
  913        * value, just as if the selector's {@link
  914        * java.nio.channels.Selector#wakeup wakeup} method were invoked.
  915        *
  916        * <p> If none of the previous conditions hold then this thread's interrupt
  917        * status will be set. </p>
  918        *
  919        * <p> Interrupting a thread that is not alive need not have any effect.
  920        *
  921        * @throws  SecurityException
  922        *          if the current thread cannot modify this thread
  923        *
  924        * @revised 6.0
  925        * @spec JSR-51
  926        */
  927       public void interrupt() {
  928           if (this != Thread.currentThread())
  929               checkAccess();
  930   
  931           synchronized (blockerLock) {
  932               Interruptible b = blocker;
  933               if (b != null) {
  934                   interrupt0();           // Just to set the interrupt flag
  935                   b.interrupt(this);
  936                   return;
  937               }
  938           }
  939           interrupt0();
  940       }
于 2013-01-06T13:55:48.497 に答える