定义一个表示学生的类student,包括属性:学号,姓名,性别,年龄;
方法:获得学号,姓名,性别,年龄;修改年龄。并书写java程序创建student类的对象及测试其方法的功能...
方法:获得学号,姓名,性别,年龄;修改年龄。并书写java程序创建student类的对象及测试其方法的功能
展开
2个回答
展开全部
public class Student { //定义一个学生类
private int StuNum; //学号
private int Name; //姓名
private char Sex; //性别
private int Age; //年龄
public Student(int StuNum, int Name, char Sex, int Age){//构造函数
this.StuNum = StuNum;
this.Name = Name;
this.Sex = Sex;
this.Age = Age;
}
public int getStuNum() { //获得学号
return StuNum;
}
public int getName() { //获得姓名
return Name;
}
public char getSex() { //获得性别
return Sex;
}
public int getAge() { //获得年龄
return Age;
}
public void setAge(int Age) { //修改年龄
this.Age = Age;
}
}
private int StuNum; //学号
private int Name; //姓名
private char Sex; //性别
private int Age; //年龄
public Student(int StuNum, int Name, char Sex, int Age){//构造函数
this.StuNum = StuNum;
this.Name = Name;
this.Sex = Sex;
this.Age = Age;
}
public int getStuNum() { //获得学号
return StuNum;
}
public int getName() { //获得姓名
return Name;
}
public char getSex() { //获得性别
return Sex;
}
public int getAge() { //获得年龄
return Age;
}
public void setAge(int Age) { //修改年龄
this.Age = Age;
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |