只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-07-03 17:20 Aimin20210819 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2018-07-03 16:53 Aimin20210819 阅读(15) 评论(0) 推荐(0) 编辑
摘要: /*修饰词:public protected defailt private*/ //同一类,构造函数 public class TDY_gz{ public String name; private int age; public TDY_gz(int age){//有参数的构造函数 this.a 阅读全文
posted @ 2018-07-03 16:50 Aimin20210819 阅读(18) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-07-03 16:48 Aimin20210819 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 匿名创建对象方法为:new XXX() public class Different_Class { //老师类 public static class Teacher { String course; //课程 String name; //名字 public void teach()// { S 阅读全文
posted @ 2018-07-03 16:46 Aimin20210819 阅读(14) 评论(0) 推荐(0) 编辑