多选题
Given:
2. public class Self extends Thread {
3. public static void main(String[] args)
4. try {
5. Thread t = new Thread(new Self());
6. t.start();
7. t.start();
8. } catch (Exception e) { System.out.print("e "); }
9. }
10. public void run() {
11. for(int i = 0; i < 2; i++)
12. System.out.print(Thread.currentThread() .getName() + " " );
13. } }
Which are true? (Choose all that apply.)