vote up -1 vote down star

Can a java programmer can create daemon threads manually? How is it?

flag

78% accept rate
2  
Do you mean "daemon" threads ? In which case, google can take you further.. – Gishu Aug 14 at 9:18
Please note that this might not do what you're really after. A daemon thread isn't the same as a daemon process. – Emil H Aug 14 at 9:45
Biju and stackoverflow.com/users/124339/johanna are same person? – SourceRebels Aug 14 at 10:11
No i am a different person... – cdb Aug 14 at 10:14
Stop flooding stackoverflow, go to your favourite search engine and use it, please. – SourceRebels Aug 14 at 10:18

2 Answers

vote up 5 vote down check

java.lang.Thread.setDaemon()

Note that if not set explicitly, this property is "inherited" from the Thread that creates a new Thread.

link|flag
vote up -1 vote down

Yes you can

Thread thread = new Thread(  
  new Runnable(){  
    public void run(){  
      while (true)
        wait_for_action();
    }  
  }  
);  
thread.start();
link|flag
1  
class Devil extends Thread { Devil() { setDaemon( true ); start(); } public void run() { // Perform evil tasks ... } } I got this one... Have u heard about this.. – cdb Aug 14 at 9:26
i think setDaemon method can do the magic... – cdb Aug 14 at 9:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.