Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 767605
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T18:03:05+00:00 2026-05-14T18:03:05+00:00

Why is implementing Runnable a better option than extending from Thread class?

  • 0

Why is implementing Runnable a better option than extending from Thread class?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T18:03:06+00:00Added an answer on May 14, 2026 at 6:03 pm

    This way you decouple the computation (the what) from the execution (the when and/or the how).

    With Runnable or Callable, you can for instance submit many work/computation to an Executor which will take care to schedule the stuffs. Here is an excerpt form ExecutorService:

    pool = Executors.newFixedThreadPool(poolSize);
    ...
    pool.execute(new Handler(serverSocket.accept()));
    ...
    class Handler implements Runnable {
        ...
     }
    

    Using Runnable/Callable gives you more flexibility that using Threads directly.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Actually, what other ways are available apart from extending the Thread class and implementing
I have a Runnable implementing class which will be run from a Executors.newFixedThreadPool Inside
Possible Duplicate: Understanding Threads I have a public class that is implementing a Runnable
I have created class by implementing runnable interface and then created many threads(nearly 10)
I have class implementing Runnable: public class Abc implements Runnable{ public synchronized void run(){
I am implementing java Runnable interface for multithreading. I have some n number of
I'm having some trouble implementing DoubleBuffer into my program. Before you faint from the
The easiest implementation is when we call from single class main method other classes
Possible Duplicate: Java: “implements Runnable” vs. “extends Thread” I have two questions about multithreaded
I'm trying to implement a SurfaceView , calling its onDraw() method from a Thread

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.