1. <legend id='f4pTz'><style id='f4pTz'><dir id='f4pTz'><q id='f4pTz'></q></dir></style></legend>

      <small id='f4pTz'></small><noframes id='f4pTz'>

      <i id='f4pTz'><tr id='f4pTz'><dt id='f4pTz'><q id='f4pTz'><span id='f4pTz'><b id='f4pTz'><form id='f4pTz'><ins id='f4pTz'></ins><ul id='f4pTz'></ul><sub id='f4pTz'></sub></form><legend id='f4pTz'></legend><bdo id='f4pTz'><pre id='f4pTz'><center id='f4pTz'></center></pre></bdo></b><th id='f4pTz'></th></span></q></dt></tr></i><div id='f4pTz'><tfoot id='f4pTz'></tfoot><dl id='f4pTz'><fieldset id='f4pTz'></fieldset></dl></div>

      <tfoot id='f4pTz'></tfoot>

        <bdo id='f4pTz'></bdo><ul id='f4pTz'></ul>

      1. 即使在其父线程死亡或终止之后,子线程如何仍然执行?

        How can child threads still execute even after that their parent thread die or terminate?(即使在其父线程死亡或终止之后,子线程如何仍然执行?)

            • <legend id='N24en'><style id='N24en'><dir id='N24en'><q id='N24en'></q></dir></style></legend>
                <tbody id='N24en'></tbody>

                <small id='N24en'></small><noframes id='N24en'>

                <i id='N24en'><tr id='N24en'><dt id='N24en'><q id='N24en'><span id='N24en'><b id='N24en'><form id='N24en'><ins id='N24en'></ins><ul id='N24en'></ul><sub id='N24en'></sub></form><legend id='N24en'></legend><bdo id='N24en'><pre id='N24en'><center id='N24en'></center></pre></bdo></b><th id='N24en'></th></span></q></dt></tr></i><div id='N24en'><tfoot id='N24en'></tfoot><dl id='N24en'><fieldset id='N24en'></fieldset></dl></div>

                  <bdo id='N24en'></bdo><ul id='N24en'></ul>
                • <tfoot id='N24en'></tfoot>
                • 本文介绍了即使在其父线程死亡或终止之后,子线程如何仍然执行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  这是我的两个课程:

                  public class Firstclass {
                      public static void main(String args[]) throws InterruptedException {
                          System.out.println("Main start....");
                          Secondclass t1 = new Secondclass();
                          t1.setName("First Thread");
                          Secondclass t2 = new Secondclass();
                          t2.setName("Second Thread");
                          t1.start();
                          t2.start();
                          System.out.println("Main close...");
                      }
                  }
                  

                  public class Secondclass extends Thread {
                      @Override
                      public void run() {
                          try {
                              loop();
                          } catch(Exception e) {
                              System.out.println("exception is" + e);
                          }
                      }
                  
                      public void loop() throws InterruptedException {
                          for(int i = 0; i <= 10; i++) {
                              Thread t = Thread.currentThread();
                              String threadname = t.getName();
                              if(threadname.equals("First Thread")) {
                                  Thread.sleep(1000);
                              } else {
                                  Thread.sleep(1500);
                              }
                              System.out.println("i==" + i);   
                          }   
                      }    
                  }
                  

                  现在当我运行 Firstclass 然后输出是:

                  Now when I run Firstclass then the output is:

                  Main start....
                  Main close...
                  i==0
                  i==0
                  i==1
                  i==1
                  i==2
                  i==3
                  i==2
                  i==4
                  i==3
                  i==5
                  i==6
                  i==4
                  i==7
                  i==5
                  i==8
                  i==9
                  i==6
                  i==10
                  i==7
                  i==8
                  i==9
                  i==10
                  

                  我的问题是:让我们考虑 main 方法由 JVM 中的线程T"执行,t1 和 t2 显然是父线程 T 的子线程,所以当作为 main 方法的 T 线程死亡时T1 和 T2 怎么还能执行并给我们输出.因为如果父线程死亡或终止,那么子线程也应该死亡或终止.

                  My question is: Let's consider main method is executed by a thread 'T' in JVM and t1 and t2 are obviously child threads of parent thread T so when T thread that is the main method dies how can T1 and T2 still execute and give us output. Because if parent thread dies or terminates then child thread should also die or terminate.

                  推荐答案

                  线程之间没有父子关系的概念.一旦两个线程运行,它们基本上就是对等的.主线程可以退出,而其他线程仍在运行.

                  There is no notion of a parent-child relationship between threads. Once the two threads are running they're basically peers. The main thread can exit while other thread still running.

                  Java 没有子"线程的真正概念.当您启动一个线程时,它会从父"继承守护进程和优先级,但这就是父/子关系的结束.

                  这篇关于即使在其父线程死亡或终止之后,子线程如何仍然执行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Bytecode features not available in the Java language(Java 语言中不可用的字节码功能)
                  ClassCastException because of classloaders?(ClassCastException 因为类加载器?)
                  How can I add a Javaagent to a JVM without stopping the JVM?(如何在不停止 JVM 的情况下将 Javaagent 添加到 JVM?)
                  Cannot load 64-bit SWT libraries on 32-bit JVM ( replacing SWT file )(无法在 32 位 JVM 上加载 64 位 SWT 库(替换 SWT 文件))
                  Encourage the JVM to GC rather than grow the heap?(鼓励 JVM 进行 GC 而不是增加堆?)
                  Why a sawtooth shaped graph?(为什么是锯齿形图形?)
                • <small id='sOBBO'></small><noframes id='sOBBO'>

                  • <i id='sOBBO'><tr id='sOBBO'><dt id='sOBBO'><q id='sOBBO'><span id='sOBBO'><b id='sOBBO'><form id='sOBBO'><ins id='sOBBO'></ins><ul id='sOBBO'></ul><sub id='sOBBO'></sub></form><legend id='sOBBO'></legend><bdo id='sOBBO'><pre id='sOBBO'><center id='sOBBO'></center></pre></bdo></b><th id='sOBBO'></th></span></q></dt></tr></i><div id='sOBBO'><tfoot id='sOBBO'></tfoot><dl id='sOBBO'><fieldset id='sOBBO'></fieldset></dl></div>
                      <legend id='sOBBO'><style id='sOBBO'><dir id='sOBBO'><q id='sOBBO'></q></dir></style></legend>

                      • <bdo id='sOBBO'></bdo><ul id='sOBBO'></ul>
                      • <tfoot id='sOBBO'></tfoot>

                            <tbody id='sOBBO'></tbody>