您好,匿名用户
随意问技术百科期待您的加入

如何根据 Student 类创建对象并测试其方法

0 投票

定义一个表示学生的类Student,包括域:学号、姓名、性别、年龄;方法:获得学号、姓名、性别、年龄;修改年龄。并书写java程序创建Student类 的对象及测试方法其方法的功能
求大侠贴出源代码

用户头像 提问 2012年 12月1日 @ Teemo 上等兵 (318 威望)
分享到:

1个回答

0 投票
public class Student {
  private int id;

  private String name;

  private int sex;

  private int age;

  public Student(int id, String name, int sex, int age) {
    this.id = id;
    this.name = name;
    this.sex = sex;
    this.age = age;
  }

  public void updateAge(int age) {
    this.age = age;
  }

  public int getId() {
    return this.id;
  }

  public String getName() {
    return this.name;
  }

  public int getSex() {
    return this.sex;
  }

  public int getAge() {
    return this.age;
  }
}

Student a = new Student(1001, "Jay", 0, 18);
a.updateAge(19);
用户头像 回复 2012年 12月1日 @ Hecarim 上等兵 (361 威望)
提一个问题:

相关问题

0 投票
1 回复 59 阅读
用户头像 提问 2012年 12月1日 @ Karthus 上等兵 (227 威望)
+2 投票
1 回复 50 阅读
用户头像 提问 2012年 12月31日 @ Saber 中士 (1,234 威望)
+2 投票
1 回复 39 阅读
用户头像 提问 2013年 1月16日 @ Taric 上等兵 (184 威望)
0 投票
0 回复 20 阅读
0 投票
1 回复 27 阅读

欢迎来到随意问技术百科, 这是一个面向专业开发者的IT问答网站,提供途径助开发者查找IT技术方案,解决程序bug和网站运维难题等。
温馨提示:本网站禁止用户发布与IT技术无关的、粗浅的、毫无意义的或者违法国家法规的等不合理内容,谢谢支持。

欢迎访问随意问技术百科,为了给您提供更好的服务,请及时反馈您的意见。
...