- 下列代码执行结果为()
- public static void main(String args[])throws InterruptedException{
- Thread t=new Thread(new Runnable() {
- public void run() {
- try {
- Thread.sleep(2000);
- } catch (InterruptedException e) {
- throw new RuntimeException(e);
- }
- System.out.print("2");
- }
- });
- t.start();
-
- t.join();
- System.out.print("1");
- }
答案-->21
join()的作用是:“等待该线程终止”,这里需要理解的就是该线程是指的主线程等待子线程的终止。也就是在子线程调用了join()方法后面的代码,只有等到子线程结束了才能执行。
对于jdk1.8,以下为 java 语法保留不能作为类名和方法名使用的是
default int implements throws
Java内存图
![]()