Question:
public class MyRunnable implements Runnable 
{
    public void run() 
    {
        // some code here
    }
}
which of these will create and start this thread? 

A new Runnable(MyRunnable).start(); 

B new Thread(MyRunnable).run(); 

C new Thread(new MyRunnable()).start(); 

D new MyRunnable().start(); 

+ Answer
+ Explanation
+ Report
Total Preview: 1858

Copyright © 2024. Powered by Intellect Software Ltd