?? runagent.java
字號:
import java.io.*;
public class runAgent
{
public static void main(String[] args)
{
char exit = ' ';
Thread t= new checkTimeControlThread();
t.setDaemon(true);
t.start();
while(exit!='Q'&&exit!='q')
{
try
{
System.out.println("Press Q/q to exit:");
exit = (char)System.in.read();
}
catch(IOException e){ }
}
System.out.println("Process finished.");
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -