Diff between Runnable Interface and Thread class while using threads

Diff between Runnable Interface and Thread class while using threads

Diff between Runnable Interface and Thread class while using threads

View Answers

January 10, 2011 at 3:35 PM

Hi Friend,

Difference:

1)If you want to extend the Thread class then it will make your class unable to extend other classes as java is having single inheritance feature whereas If you implement runnable interface, you can gain better object-oriented design and consistency and also avoid the single inheritance problems.

2)Extending the thread will give you simple code structure in comparison to Runnable Interface.

3)Using Runnable Interface, you can run class several times whereas Thread have the start() method that can be called only once.

Thanks









Related Tutorials/Questions & Answers:
Diff between Runnable Interface and Thread class while using threads
Diff between Runnable Interface and Thread class while using threads  Diff between Runnable Interface and Thread class while using threads  ... to Runnable Interface. 3)Using Runnable Interface, you can run class several
Diff between Runnable Interface and Thread class while using threads
Diff between Runnable Interface and Thread class while using threads  Diff between Runnable Interface and Thread class while using threads  ... to Runnable Interface. 3)Using Runnable Interface, you can run class several
Advertisements
Difference between extends thread class vs implements runnable interface - Java Interview Questions
Difference between extends thread class vs implements runnable interface  Hi Friends, can you give difference between extending thread class... Runnable Interface, you can run the class several times whereas Thread have
Threads on runnable interface - Java Beginners
Threads on runnable interface  need a program.....please reply asap Create 2 threads using runnable interface.First threads shd print "hello....  Hi class MyThread extends Thread{ MyThread(String s
Threads on runnable interface - Java Beginners
Threads on runnable interface  need a program.....please reply asap Create 2 threads using runnable interface.First threads shd print "hello....  Hi manshi, i am sending simple code of thread. class MyThread
Creation of Multiple Threads
interface: class MyThread1 implements Runnable{   Thread t;   MyThread1.... It means, you can use either class Thread or interface Runnable to implement thread... than one thread (multithreads) in a program using class Thread or implementing
Runnable interface in java
In this section we will learn about Runnable interface in java. In java thread are created by two ways, one by extending Thread class and another one by implementing Runnable interface
Java : Runnable Thread
are creating thread by using Runnable interface.ADS_TO_REPLACE_2 class... a thread by implementing the Runnable interface. You need to implement a single... methods too. After creating class that implements Runnable interface, you can
Java Thread and Runnable
Java Thread and Runnable  What's the difference between Thread and Runnable types
Difference between abstract class and an interface
Difference between abstract class and an interface The difference between abstract class and interface is one of the most popular question in the interview... between abstract class and interface in java. Abstract class is a class
What are the difference between abstract class and interface?
What are the difference between abstract class and interface?  What are the difference between abstract class and interface
Java Runnable Interface
is an interface. Thread class implements it. Java has multithreading facility. Thread is also created by implementing the Runnable interface. Java Runnable Thread Example public class runnable1 implements Runnable { @Override
Java Thread class
It is created by extending the Thread class or implementing Runnable interface Java Thread Class Example public class thread1 extends Thread { @Override... Java Thread Class is a piece of the program execution Java has
Creation of MultiThreads
the Runnable interface: class MyThread1 implements Runnable{   Thread t.... It means, you can use either class Thread or interface Runnable to implement... create more than one thread (multithreads) in a program using class Thread
Diff between ArrayList and Vector?
Diff between ArrayList and Vector?  What's The Difference between ArrayList and Vector Classes and Can you give me a simple Program for set and List Interface
implements runnable n extends thread - Java Beginners
implements runnable n extends thread  what is the difference between implements runnable n extends thread? public class...(); class StringThreadImplement implements Runnable { private String } }  Hi public class
Count Active Thread in JAVA
: class ThreadCount implements Runnable { Thread th; String str; public...Count Active Thread in JAVA In this tutorial, we are using activeCount() method of thread to count the current active threads. Thread activeCount
Creation of MultiThreads
thread (multithreads) in a program using class Thread or implementing interface... Thread or interface Runnable to implement thread in your program. Download... by extending Thread Class:ADS_TO_REPLACE_1  class MyThread 
Diff between Struts1 and struts 2? - Struts
interfaces. While in Struts 2, an Action class implements an Action interface, along...Diff between Struts1 and struts 2?  What are the difference... safe or synchronized while developing an application. Struts 2 doesn?t have thread
Interface Vs Abstract Class
Interface Vs Abstract Class       There are three main differences between an interface and an abstract..., an interface is equivalent to a fully abstract class (a class with only public abstract
diff between spring and struts in java
diff between spring and struts in java  diff between spring and struts in java
diff between encapsulation and abstraction code
diff between encapsulation and abstraction code  diff between encapsulation and abstraction code
Threads - Java Interview Questions
to Runnable Interface. 3)Using Runnable Interface, you can run the class several...Threads  creating a thread is two ways?extends with thread class and implements runnabule interface. What is the diffrence between those two?which
Creating multiple Threads
they are as follows: By implementing Runnable interface. By extending Thread class. While implementing Runnable interface or extending Thread class, you have... class B extends Thread { public void run() { System.out.println(); for (int i
thread class - Java Beginners
and notifies the other thread about this value - The decrementor threads... the following code: class Incrementor extends Thread{ int cnt1 = 0; boolean...; } } class Decrementor extends Thread{ int cnt2 = 100; int cnt1
Email queue while sending mail using Struts Class
Email queue while sending mail using Struts Class  Can I maintain a queue of mails being sent from a JSP page in a DB to get its status
Email queue while sending mail using Struts Class
Email queue while sending mail using Struts Class  Can I maintain a queue of mails being sent from a JSP page in a DB to get its status
diff between encapsulation and abstraction code with output
diff between encapsulation and abstraction code with output   diff between encapsulation and abstraction code with output
diff between encapsulation and abstraction code with output
diff between encapsulation and abstraction code with output   diff between encapsulation and abstraction code with output
diff between encapsulation and abstraction code with output
diff between encapsulation and abstraction code with output   diff between encapsulation and abstraction code with output
Difference between Timer and Thread?
Difference between Timer and Thread?  Can anyone tell me about the difference between Timer and Thread, Why we need to have Timer in case we have Thread implimentation startegy in Java
Threads
Threads  Extends Thread or Implementing Runnable Interface... flexibility for the Runnable implementation to extend another class. 2)Separates the code from execution 3)Allows you to run your runnable from a Thread Pool
How to remove the space between a JComponent and its Grid border while using GridBagLayout?
How to remove the space between a JComponent and its Grid border while using GridBagLayout?   Hi, I had try to design a UI using GridBagLayout.I... space between the Label text and the TextBox.Could anyone help me to reduce
Interface and Abstract class
Interface and Abstract class  Difference between Interface and Abstract class? Give some example   Difference Between Interface... interface should be implemented using keyword 'implements'; A Java abstract class should
Thread
the Thread class and the second is to implement the Runnable interface. Please... methods of thread class.   Java Create Thread There are two main ways of creating a thread. The first is to extend the Thread class and the second
Java Thread : isAlive() method
threads ,java take long periods switching between threads , may be one of your thread dead. This can be checked by using method Thread.isAlive().ADS... or not. class ThreadIsAlive implements Runnable { @Override public void
Abstract class and interface in Java
Abstract class and interface in Java  What is the difference between abstract class and interfaces in Java?   Differences between an interface and an abstract class: At the same time multiple interfaces can
Interface and Abstract class
Interface and Abstract class  hello,, Can some body tell me what is the difference between an Interface and an Abstract class?   hi,ADS_TO_REPLACE_1 Very Good Question Abstract class is a class which contain one
Java :Thread Methods
are constructing thread by using a separate Runnable run object, then run method... : class RunnableThread implements Runnable { Thread thread; public...Java :Thread Methods This section explains methods of Thread class. Thread
Java Exception Thread
)Extends the Threads Class( java.lang.thread)ADS_TO_REPLACE_3 2)Implement Runnable interface( java .lang. thread) Understand Exception in Threads. 1.A class name...( ) method  executed by the thread. Object of this class is runnable 2
Thread Priorities
a thread with a higher priority and all other threads are runnable... the execution schedule of threads . Thread gets the ready-to-run state according... chooses the runnable thread with the highest priority for execution. In Java runtime
difference between main thread and child thread?
difference between main thread and child thread?  any one give correct exact difference.   in jsp 7 implicit objects are available those are 1:response->This denotes the data included with the HTTP Response. 2
multi threads - Java Beginners
using three threads. I want to declare variables which will be available to all...("count=" + getCount()); } }; Thread threadA = new Thread(runnable, "ThreadA"); threadA.start(); Thread.sleep(500); Thread threadB = new Thread(runnable
implementing an algorithm using multi threads - Java Beginners
ends"); } } class A implements Runnable { File f; FileOutputStream fos... thread B"); for(int i=0;i<250000;i++) { /*while(available==true...(); } } } class C implements Runnable { double a; double b; double lamsq
Threads
Threads   class Extender extends Thread { Extender(Runnable...(); } } class Implementer implements Runnable { public void run...();} public void run(){ System.out.println("Extender Thread
pls tell me the difference between the run() and start() in threads in java....
pls tell me the difference between the run() and start() in threads in java....  difference between the run() and start() in threads in java
Thread Priorities
a thread with a higher priority and all other threads are runnable... the execution schedule of threads . Thread gets the ready-to-run state according... chooses the runnable thread with the highest priority for execution. In Java
interfaces,exceptions,threads
class. In java, multiple inheritance is achieved by using the interface... THE COMPLETE CONEPTS OF INTERFACES,EXCEPTIONS,THREADS   Interface... or non static variables.Any class can implement(inherit)the interface and make use
Diff Bn Marker Interface and instanceOf - Java Interview Questions
Diff Bn Marker Interface and instanceOf   Hi Friends, Wats d difference bn Marker Interface and instanceOf method. Thanks
abstract class and interface - Java Beginners
. For difference between interface and abstract class visit to : http...? when should we use an abstract class? when should we use interface instead...() { System.out.println ("Moo! Moo!"); } } Why not declare an abstract class as an interface

Ads