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

📄 showmsg.java

📁 点对点聊天系统 支持文字和语音聊天。同时是服务器和客户端。App.formApp.javaShowMsg.javaTCPClient.javaTCPServer.javaUDPCapture.java
💻 JAVA
字号:
/*
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -