Question: Consider the following class Which of the following will create and start this thread? (a) New Runnable(MyClass).start(); (b) New Thread(MyClass).run(); (c) New Thread(new MyClass()).start(); (d)
Consider the following class
Which of the following will create and start this thread?
(a) New Runnable(MyClass).start();
(b) New Thread(MyClass).run();
(c) New Thread(new MyClass()).start();
(d) New MyClass().start();
public class MyClass implements Runnable { public void run () // some code here {
Step by Step Solution
3.44 Rating (154 Votes )
There are 3 Steps involved in it
c New... View full answer
Get step-by-step solutions from verified subject matter experts
