?? cubbyhole.java
字號:
class CubbyHole { private int contents; private int available = 0;// public synchronized native int get(); public native int get(); public synchronized native void put(int value); static { try { System.loadLibrary("threadsync"); } catch (UnsatisfiedLinkError e) { System.err.println("Can't find library for thread sync"); System.exit(-1); } }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -