【scjp】SCJP程序员认证考试题库

发布时间:2021-03-17 22:05:51

public class Threads4 {  public static void main (String[] args) {  new Threads4().go();  }  public void go() {  Runnable r = new Runnable() { public void run() {  System.out.print(”foo”);  }  };  Thread t = new Thread(r);  t.start();  t.start();  }  }  What is the result?() 

网友回答

请联系客服获取此题答案!
以上问题属网友观点,不代表本站立场,仅供参考!