📄 rtthread.java
字号:
package ravenrt;public class RtThread extends RtTask { private RtThread() {} protected static final int SOFT_RANGE = 10; public static final int HARD_RANGE = 10; public static final int MIN_PRIORITY = Thread.MAX_PRIORITY+SOFT_RANGE+1; public static final int MAX_PRIORITY = MIN_PRIORITY+HARD_RANGE; public RtThread(int priority, RelativeTime period) { } public RtThread(int priority, RelativeTime period, Memory mem) { } public void run() { } public boolean waitForNextPeriod() { return true; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -