摘要:
==人机猜拳:== 用户类 @Setter @Getter public class Users { private String username; private int score; public int uFist(Scanner input){ System.out.println("请出 阅读全文
摘要:
static关键字 静态的,作为普通修饰符 修饰成员变量/方法 >静态变量/方法||类变量/类方法 在普通方法里面可以访问静态方法,但是静态方法中不能方法非静态成员,如果非要访问的话可以创建类的对象来访问成员(例如:new Test().name;),且不能使用this,当class被加载时,sta 阅读全文
摘要:
this关键字 是指当前==正在运行==的对象,它是位于栈内存 ==this可以访问类的成员变量/方法== 利用this访问成员变量 public class Book { private int id; public int getId() { return this.id;//这里的this是我 阅读全文