I have a class that extends the Thread class, wanted to know if each time I create an object it initializes a Thread.
class Objeto{
String nomeObjeto;
public Objeto(String nomeObjeto){
this.nomeObjeto = nomeObjeto;
}
public static void main(String[] args){
new Objeto().start();//Objeto 1
new Objeto().start();//Objeto 2
}
}