About Question com.enthuware.ets.scjp.v6.2.465 :

Help and support on OCA OCP Java Programmer Certification Questions
1Z0-808, 1Z0-809, 1Z0-815, 1Z0-816, 1Z0-817

Moderator: admin

Post Reply
ETS User

About Question com.enthuware.ets.scjp.v6.2.465 :

Post by ETS User »

What will the following program print when run?


class MyThread extends Thread
{
public void run()
{
for(;;)
{
System.out.println("running...");
}
}
}
public class TestClass
{
public static void main(String args[]) throws Exception
{
MyThread mt = new MyThread();
mt.setDaemon(true);
mt.start();
mt.setDaemon(false);
}
}
Respectfully, we are told that the topic of daemon threads is not on the exam.

Post Reply

Who is online

Users browsing this forum: No registered users and 74 guests