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

📄 account.java

📁 虚拟银行
💻 JAVA
字号:
package Tools;public class Account {        public String username;        public String password;        public int money;        public String role;        public Account ()        {           this.username=this.password=this.role="";           this.money=0;        }        public Account (String name,String pwd,int money,String role)        {            this.username=name;            this.password=pwd;            this.money=money;            this.role=role;        }        public Account (Account a)        {            this.username=a.username;            this.password=a.password;            this.money=a.money;              this.role=a.role;        }}

⌨️ 快捷键说明

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