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

📄 usertable.java

📁 一个采用Java Socket编程实现的QQ软件
💻 JAVA
字号:

package database;

public class usertable {
    
    private String username;
    private String password;
    private String message;
    private String friends;
    private int type;
    public usertable() {
    }
    public void setusername(String username){
        this.username = username;
    }
    public String getusername(){
        return username;
    }
    public void setpasswrod(String password){
        this.password = password;
    }
    public String getpassword(){
        return password;
    }
    public void setmessage(String message){
        this.message = message;
    }
    public String getmessage(){
        return message;
    }
    public void setfriends(String friends){
        this.friends = friends;
    }
    public String getfriends(){
        return friends;
    }
    public void settype(int  type){
        this.type = type;
    }
    public int  gettype(){
        return type;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -