Home / Java Programming / Threads :: Discussion

Discussion :: Threads

  1. Which method must be defined by a class implementing the java.lang.Runnable interface?

  2. A.
    void run()
    B.
    public void run()
    C.
    public void start()
    D.
    void run(int priority)

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    Option B is correct because in an interface all methods are abstract by default therefore they must be overridden by the implementing class. The Runnable interface only contains 1 method, the void run() method therefore it must be implemented.

    Option A and D are incorrect because they are narrowing the access privileges i.e. package(default) access is narrower than public access.

    Option C is not method in the Runnable interface therefore it is incorrect.


Be The First To Comment