只有注册用户登录后才能阅读该文。 阅读全文
摘要:
public class DY_f{ public String name; public int age; public DY_f(int age){ //有参数的构造函数 this.age=age; } public void setAge(int age){ this.age=age; } p 阅读全文
摘要:
/*修饰词:public protected defailt private*/ //同一类,构造函数 public class TDY_gz{ public String name; private int age; public TDY_gz(int age){//有参数的构造函数 this.a 阅读全文
该文被密码保护。 阅读全文
摘要:
匿名创建对象方法为:new XXX() public class Different_Class { //老师类 public static class Teacher { String course; //课程 String name; //名字 public void teach()// { S 阅读全文