?? showmsg.java
字號(hào):
/*
* ShowMsg.java
*
* Created on 2006年5月7日, 下午12:05
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package skyqq;
/**
*
* @author wjhua
*/
public class ShowMsg implements Runnable{
App app;
String str;
/** Creates a new instance of ShowMsg */
public ShowMsg(App a,String s) {
app=a;
str=s;
}
void setMsg(String s){
str=s;
}
public void run() {
app.showMsg(str);
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -