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 |
write a progra in c++ using class & object to find out wheather a given no. is prim or not.
Given two strings like x=?hello? and y=?open?, remove any character from string x which is also used in string y, thus making the result x=?hll?.
Does c++ support multilevel and multiple inheritance?
What does the keyword "static" mean?
Explain the concept of abstracion and encapsulation with one example. What is the difference between them?
How to overload new operator in c++
what is Class in oops with example?
What is the difference between pass by value,pass by pointer,pass by reference in the catch block in the exception handling in c++
Can we have inheritance without polymorphism?
what is object oriented programming and procedure oriented programming?
Plese get me a perfect C++ program for railway/airway reservation with all details.
When will a constructor executed?