摘要:
黑马 文字版格斗游戏 //测试类 public class gameTest { public static void main(String[] args) { //1.创建第一个角色 Role r1 = new Role("周健",100); //2.创建第二个角色 Role r2 = new 阅读全文
摘要:
this关键字 public class girlFriend{ //类 private int age; //定义在方法外、类中的成员变量 public void method(){ //方法 int age = 10; //定义在方法中的局部变量 System.out.println(age); 阅读全文