⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 thread.java

📁 Java Op Processor java vhdl processor
💻 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 + -