Note note = new Note(400,"short"); note.start(); //start the note thread
Vs
new Note(400,"short").start();
I thought both ways are same to make instance of the class. But only the first way above moves my note with thread... what's the difference between those two and why thread start method only works with the first one?