cant we call run() method directly instead of calling indirectly through the start()
method ? if we do so then what is the problem ?
Answer Posted / srinu
Calling run() without calling start() will effectively
execute run() in the current thread.then that time only one
thread it will be created.but n't achiving the mulithreading
concepts.
ex:-
class Sample extends Thread
{
Sample()
{
System.out.println("hai how are u");
}
public void run()
{
System.out.println("run method will be called");
}
}
public class ThreadExample
{
public static void main(String k[])
{
Sample s=new Sample();
s.run();
int k1=Sample.activeCount();
System.out.println(k1);
}
}
OUTPUT:
hai how are u
run method will be called
1
IN this program only one thread will be created.
start()--->
Calling start() will kick off a seperate thread,from your
current thread, which will then call run().
EX:-
class Sample extends Thread
{
Sample()
{
System.out.println("hai how are u");
}
public void run()
{
System.out.println("run method will be called");
}
}
public class ThreadExample
{
public static void main(String k[])
{
Sample s=new Sample();
s.start();
int k1=Sample.activeCount();
System.out.println(k1);
}
}
OUTPUT:
hai how are u
run method will be called
2
In this program 2 threads will be started.
Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
What is transactional in java?
What is the difference between the boolean & operator and the && operator?
Can a dead thread be started again?
When a thread is created and started, what is its initial state?
Is jdk a compiler?
What is mq in java?
What is jboss in java?
What is tight coupling in java?
What is the locale class?
What is gui in java with examples?
What are the Advantages of java se 8 new features?
What is repository pattern in java?
What is orm in java?
I am trying to create a new universal user group. Why can't i? : java security
How do I install java re?