摘要: public class Test { //成员变量 public int i; //静态变量(类的变量) public static int j; public void method() { //局部变量 int i = 3; System.out.println(i); }... 阅读全文
posted @ 2018-06-03 20:52 xiaotao520 阅读(82) 评论(0) 推荐(0) 编辑
摘要: public class Test { //构造方法,每一个类中都有构造方法,当代码中没有显式的构造方法时, //程序在执行过程中,会创建一个公开的无参构造方法 //当代码中有了显式的构造方法,程序就不会自动创建公开无参的构造方法 //构造方法的作用:一般是为成员变量赋初始化值 public int a;//成员变量 ... 阅读全文
posted @ 2018-06-03 20:27 xiaotao520 阅读(187) 评论(0) 推荐(0) 编辑