Create Parent Thread in java -


often create child threads within main()

thread thread = new thread(new runnable(){public void run(){}}); 

likewise, possible create parent threads ?

runtime.exec()?

see: how create process in java

i think we're not sure mean "parent thread" though...

from coderanch.com: http://www.coderanch.com/t/475322/threads/java/parent-thread-id

except thread created jvm start application, every thread created other thread. have decided call "parent thread"; isn't concept of java language, though.


Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c++ - Using OpenSSL in a multi-threaded application -

All overlapping substrings matching a java regex -