class cc extends Thread {
cc(String s) {
super(s);
}
}
class mainn {
public static void main (String args[]) {
cc t1 = new cc("first");
t1.start();
}
}
问题:线程是否出生
- 此时——>
cc t1 = new cc("first");
- 或者它是在这一点上诞生和开始的——>
t1.start();
?