标题: [Oracle interview]What is daemon thread and which method is used to create the daemon thread? [打印本页] 作者: 程旭媛 时间: 2013-8-16 16:37 标题: [Oracle interview]What is daemon thread and which method is used to create the daemon thread? 作者: 龚城师 时间: 2013-8-16 16:43
Daemon thread is a low priority thread which runs intermittently in the back ground doing the garbage collection operation for the java runtime system. setDaemon method is used to create a daemon thread.