?? test.java
字號:
package com.gc.action;
public class Test {
public Test(){
Test alias1 =this;
Test alias2 = this;
synchronized(alias1){
try{
alias2.wait();
System.out.println("aaa");
}catch(InterruptedException e){
System.out.println("aaaa");
}catch(Exception e){
System.out.println("bb");
}finally{
System.out.println("bbxx");
}
System.out.println("bbyy");
}
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
new Test();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -