摘要:
题目 两个线程,一个线程打印1到52,一个线程打印A到Z,打印顺序是12A34B……5152Z 代码实现 public class ThreadTest { public static void main(String[] args){ Foo tt = new Foo(); new Thread( 阅读全文
摘要:
public class Test { public static void main(String[] args) { f1(); } static Test t = new Test(); static{ System.out.println("1"); } { System.out.print 阅读全文