定义一个Student类 类的属性有private String name; private int age; private float score;
时间: 2023-06-08 10:09:05 浏览: 130
设计学生类Student,属性:编号(整型);姓名(字符串),成绩(整型)。
5星 · 资源好评率100%
好的,以下是一个可以用来定义Student类的Java代码:
```
public class Student {
private String name;
private int age;
private float score;
public Student(String name, int age, float score) {
this.name = name;
this.age = age;
this.score = score;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public float getScore() {
return score;
}
public void setScore(float score) {
this.score = score;
}
}
```
这个类有三个私有属性:name(姓名),age(年龄)和score(分数),它们都有对应的getter和setter方法。我们还定义了一个构造函数,可以在创建对象时同时给定这些属性的值。
阅读全文