📄 userinfo.java
字号:
import java.io.*;
public class UserInfo{
public String username;
public String chatroom;
public int chatroom_id;
public BufferedReader input;
public PrintWriter output;
public int boss;
int channel_id,moneycount;
String to;
public UserInfo(String name, String c, int chatroom_id,BufferedReader in,
PrintWriter out,int boss,int channel_id,int moneycount, String to){
this.username = name;
this.chatroom = c;
this.chatroom_id=chatroom_id;
this.input = in;
this.output = out;
this.boss=boss;
this.channel_id=channel_id;
this.moneycount=moneycount;
this.to=to;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -