多选题
Given:
3. public class Race {
4. public static void main(String[] args)
5. Horse h = new Horse();
6. Thread t1 = new Thread(h, "Andi");
7. Thread t2 = new Thread(h, "Eyra");
8. new Race() .go(t2);
9. t1.start();
10. t2.start();
11. }
12. void go(Thread t) {t.start(); }
13. }
14. class Horse implements Runnable {
15. public void run() {
16. System.out.print(Thread.currentThread() .getName() + " ");
17. } }
What is the result? (Choose all that apply.)