?? thread.java
字號:
/*** Thread.java (only for EmbeddedCoffeinMark)*/package java.lang;public class Thread implements Runnable { public final static int MIN_PRIORITY = 1; public final static int NORM_PRIORITY = 5; public final static int MAX_PRIORITY = 10; public static void yield() { ; // do nothing } public void run() { ; // do nothing } public static void sleep(long l) { int tim = (int) l; joprt.RtThread.sleepMs(tim); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -