how to create thread in java?
Answers were Sorted based on User's Feedback
Answer / manju
Thread can be created by
1. Extending Thread Class
2. implementing Runnable interface
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / chiranjeevi
threads are created in two ways
1.extending threadclass
2.runnable interface
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / teja
We r creating threads in java by extending d thread class
or by implementing runnable interface.
Syntax for creaton of thread is:
Thread var=new Thread(Runnableobject,"Stringname");
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ravi gandhi
threads are created in two ways
1.implementing Runnable interface
2.Extending Thread Class
in thees two ways implements runnable interface is better
option because it supports multilevle thread cocept
| Is This Answer Correct ? | 0 Yes | 0 No |
Threads are created in three ways
1. Sub-class Thread: Create sub-class of java.lang.Thread class
2. Runnable object: Implementing java.lang.Runnable interface.
3. Callable object: Implementing java.lang.Callable interface.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / hari
It can also be created in number of ways.
1.Extended threadclass
2.Running thread
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / solanki
It was created by extended from Thread class
and also we can create from interface thred
| Is This Answer Correct ? | 2 Yes | 8 No |
Why and when is a virtual destructor needed?
how many types of notations are in java
1 Answers National University of Modern Languages (NUML),
Write a macro for swapping integers
Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
What is a class oop?
what is overloading
What are generic functions and generic classes?
Write an operator overloading program to write S3+=S2.
what uses of c++ language?
What is encapsulation in oops?
What is the differances between a abstract calss and interface
Write a program to find out the number of palindromes in a sentence.