top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the difference between Thread.start() & Thread.run() method in Java

0 votes
1,265 views
What is the difference between Thread.start() & Thread.run() method in Java
posted Sep 4, 2013 by Vinay Shukla

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes

Thread.start() method(native method) of Thread class actually does the job of running the Thread.run() method in a thread.If we directly call Thread.run() method it will executed in the same thread,so does not solve the purpose of creating new thread.

answer Sep 4, 2013 by Arvind Singh
...