0
start() method
Does the start() method call all the overridden methods in the thread?
2 Answers
+ 2
Will need example plz so we can help
0
Mainly calls the run() method ensuring that happens in a thread appart.
Take a look at OpenJDK source repository đ
http://hg.openjdk.java.net/jdk9/jdk9/jdk/file/2bf254421854/src/java.base/share/classes/java/lang/Thread.java
Another note... most of internal Thread methods are delegated to native runtime