当前位置:   article > 正文

按要求编写Java应用程序。 (1)创建一个叫做People的类: 属性:姓名、年龄、性别、身高 行为:说话、计算加法、改名 编写能为所有属性赋值的构造方法; (2)创建主类: 创建一个对象:名叫“张...

练习1.要求建立一个能描述人类信息的class,有姓名、年龄、性别、住址、体重等
  1. package com.hanqi.test;
  2. public class People {
  3. private String nema;//姓名
  4. private int age;//年龄
  5. private String sex;//性别
  6. private double height;//身高
  7. //创建所有属性的构造方法
  8. public String getNema() {
  9. return nema;
  10. }
  11. public void setNema(String nema) {
  12. this.nema = nema;
  13. }
  14. public int getAge() {
  15. return age;
  16. }
  17. public void setAge(int age) {
  18. this.age = age;
  19. }
  20. public String getSex() {
  21. return sex;
  22. }
  23. public void setSex(String sex) {
  24. this.sex = sex;
  25. }
  26. public double getHeight() {
  27. return height;
  28. }
  29. public void setHeight(double height) {
  30. this.height = height;
  31. }
  32. //成员方法
  33. public String getSay()
  34. {
  35. return "你好";
  36. }
  37. public int getAccount(int a,int b)//计算a+b返回int
  38. {
  39. return a+b;
  40. }

  

People pp=new People();
     pp.setNema("张三");
     pp.setSex("");
     pp.setAge(18);
     pp.setHeight(1.80);
     System.out.println("姓名:"+pp.getNema()+"\r性别:"+pp.getSex()+"\r年龄:"+pp.getAge()+"\r身高"+pp.getHeight()
     +"\r他说:"+pp.getSay()+"\r23+45="+pp.getAccount(23, 45)
             
             );
     pp.setNema("李四");
     System.out.println("姓名改为:"+pp.getNema());
    }

 

转载于:https://www.cnblogs.com/diaozhaojian/p/5886647.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/136527
推荐阅读
相关标签
  

闽ICP备14008679号