image.png

    1. package com.guigu.exer;
    2. /*
    3. * 要求:
    4. * (1创建person类的对象,设置该对象的name、age和sex属性,调用study方法,
    5. * 输出字符串“studying”,调用shouAge()方法显示age值,
    6. * 调用addAge()方法给对象的age属性值增加2岁。
    7. * (2创建第二个对象,执行上述操作,体会同一个类的不同对象之间的关系
    8. */
    9. public class PersonTest {
    10. public static void main(String[] args){
    11. person p1 = new person();
    12. p1.name = "Tom";
    13. p1.age = 18;
    14. p1.sex = 1;
    15. p1.study();
    16. p1.showAge();
    17. //p1.addAge(0);
    18. int newAge = p1.addAge(1);
    19. System.out.println(p1.name+"新年龄为:"+newAge);
    20. person p2 = new person();
    21. p2.showAge();
    22. p2.study();
    23. System.out.println(p2.name+"新年龄为:"+newAge);
    24. }
    25. }
    26. public class person {
    27. String name;
    28. int sex;
    29. int age;
    30. public void study(){
    31. System.out.println("studying");
    32. }
    33. public void showAge(){
    34. System.out.println("age:"+age);
    35. }
    36. public int addAge(int i){
    37. age += i;
    38. return age;
    39. }
    40. }