//package demo;
//
//public class person {
// String name;
// String xb;
// int nl=20;
//
// public void eat(){
// System.out.println("小明在上课!");
// }//1
// public void sleep(String A){
// System.out.println("小明"+A+"上课!");
// }//2
// public int getAge(){
// return nl;
// }//3
//this 1
// package demo;
// public class person {
// public String name;
// public int age;
// public String intronduction(){
// return "大家好!我是"+name+",我今年"+age+"岁";
// }
// }
//this 2
// package demo;
// public class person {
// public String name;
// public int age;
// public String intronduction(){
// return "大家好!我是"+name+",我今年"+age+"岁";
// }
// public String getName() {
// return name;
// }
// public void setName(String name) {
// this.name = name;
// }
// public int getAge() {
// return age;
// }
// public void setAge(int age) {
// this.age = age;
// }
//}
//package demo;
// public class person {
// private String name;
// private int age;
// public int getAge(){
// return age;
// }
// public void setAge(int age){
// if(age<22){
// System.out.println("cuowu");
// this.age=22;}
// else{
// this.age=age;
// }
//
// }
// }
//
// package demo;
// public class person {
// private String name; // 教员姓名
// private int age; // 年龄
// private String education; // 学历
// private String position; // 职位
// // 带参数的构造方法
// public person(String pName,int pAge,String pEducation,String pPosition) {
// name = pName;
// age = pAge; // 可以增加对age等属性的存取限制条件
// education = pEducation;
// position = pPosition;
// }
// public String introduction() {
// return "大家好!我是" + name + ",我今年" + age + "岁,学历" + education + ",目前职位是"+position;
// }
// }
//
//
//
// package demo;
// public class person {
//
//
// private String name; // 教员姓名
// private String school ; // 所在中心
//
// public person(String name) {
//
// this.name = name; //设定教员姓名
//
//
// }
// public person(String name, String school) {
//
//
// this.name = name; //设定教员姓名
// this.school = school; //设定教员的所在中心
//
//
// }
// public String introduction() {
// return "大家好!我是" + school + "的" + name ;
// }
// }
//
//
//
//
//
//package demo;
//public class person {
//private String title;//书名
//private int pageNum;//页数
//private String type;//类型
//
///*构造方法*/
//public person(String title,int pageNum){
//this.title = title;
//this.pageNum = pageNum;
//this.type = "计算机";
//}
//
//public char[] getDetail() {
// // TODO Auto-generated method stub
// return null;
//}
//}
/*定义一个长方形类MyBox并在另一个BoxTest类中使用。
MyBox类:
成员变量:宽度: width 长度: length
构造方法: MyBox(double width,double length)
成员方法:计算面积、计算周长、修改长度、修改宽度
BoxTest类:
成员方法:
main方法*/
2
//package demo;
//
//public class test {
// public static void main(String [] args){
// person tom=new person();
// tom.name="小明";
// System.out.println(tom.name);
// tom.eat();
// tom.sleep("沙发");
// System.out.println( tom.name+"的年龄为:"+tom.getAge()+"岁!");
//
//
//
//}
// package demo;
//
// public class test {
// public static void main(String [] args){
// person p1=new person();
// p1.setName("1");
// p1.setAge(20);
// System.out.println( p1.intronduction());
//
//}
//
//}
//this 1
// package demo;
// public class test {
// public static void main(String [] args){
// person p1=new person();
// p1.name="余双";
// p1.age=20;
// System.out.println( p1.intronduction());
//}
// }
//this 2
// package demo;
//
// public class test {
// public static void main(String [] args){
// person p1=new person();
// p1.setName("1");
// p1.setAge(20);
// System.out.println( p1.intronduction());}
// }
// package demo;
//
// public class test {
// public static void main(String [] args){
// person p1=new person();
// p1.setName("1");
// p1.setAge(20);
// System.out.println( p1.intronduction());}
// }
// package demo;
// public class test{
// public static void main(String[] args) {
// person p1 = new person("李芳", 23, "本科", "咨询师");
// System.out.println(p1.introduction());
//}
//}
//
// package demo;
// public class test{
// public static void main(String[ ] args) {
// person p1 = new person("李芳","北京中心");
// System.out.println(p1.introduction());
// person p2 = new person("张欣", "天津中心");
// System.out.println(p2.introduction());
// person p3 = new person("12", "重庆中心");
// System.out.println(p3.introduction());
// }
// }
//
//Book3=person,
//package demo;
// public class test{
//
// public static void main(String[] args) {
// person p1 = new person("面向对象程序设计", 320);//创建Book3类的对象
// System.out.println(p1.getDetail());//调用getDetail方法
//
// person p2 = new person("面向对象程序设计", 320);//创建Book3类的对象
// System.out.println(p2.getDetail());//调用getDetail方法
// }
// }