showmsg.java
来自「点对点聊天系统 支持文字和语音聊天。同时是服务器和客户端。App.formApp」· Java 代码 · 共 34 行
JAVA
34 行
/*
* 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);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?