用java请按照以下要求设计一个学生类Student,并进行测试。要求如下: (1)Student类中包含姓名、成绩两个属性,访问权限设置为私有性。(2分) (2)分别给这两个属性定义两个方法,一个方法用于设置值,另一个方法用于获取值。(2分) (3)Student类中定义一个无参的构造方法和一个接收两个参数的构造方法,两个参数分别为姓名和成绩属性赋值。(2分) (4)在测试类中创建两个Student对象,一个使用无参的构造方法,然后调用方法给姓名和成绩赋值,另一个使用有参的构造方法,在构造方法中给姓名和成绩赋值,最后把两个对象的属性信息输出到控制台。(4分)
时间: 2024-03-16 22:47:08 浏览: 186
好的,我会按照您的要求进行设计。以下是代码实现:
```
public class Student {
private String name;
private int score
public Student() {
}
public Student(String name, int score) {
this.name = name;
this.score = score;
}
public void setName(String name) {
this.name = name;
}
public void setScore(int score) {
this.score = score;
}
public String getName() {
return name;
}
public int getScore() {
return score;
}
}
public class Test {
public static void main(String[] args) {
Student stu1 = new Student();
stu1.setName("Tom");
stu1.setScore(80);
System.out.println("Name: " + stu1.getName() + ", Score: " + stu1.getScore());
Student stu2 = new Student("Jerry", 90);
System.out.println("Name: " + stu2.getName() + ", Score: " + stu2.getScore());
}
}
```
运行结果如下:
```
Name: Tom, Score: 80
Name: Jerry, Score: 90
```
希望能够帮到您!
阅读全文