编写StudentTest.java文件。 定义一个表示学生信息的类Student,要求如下:(1)类Student的成员变量:姓名、性别、年龄和班级。 (2)如果年龄小于6岁,输出“错误!最小年龄应为6岁!” (3)根据类Student的定义,创建1个该类的对象,输出学生自我介绍的信息。(大家好!我是张强,我今年21岁,兴趣爱好唱歌,我的班级是软件1班!) (4)附截图(能看到源码和运行结果)。
时间: 2023-03-14 10:41:27 浏览: 193
编写一个JAVA程序,定义一个Student类
5星 · 资源好评率100%
首先,将学生信息定义为类:public class Student {
String name;
String gender;
int age;
String className;
public Student(String name, String gender, int age, String className) {
this.name = name;
this.gender = gender;
this.age = age;
this.className = className;
}
public void introduce() {
if (this.age < 6) {
System.out.println("错误!最小年龄应为6岁!");
} else {
System.out.println("大家好!我是" + this.name + ",我今年" + this.age + "岁,兴趣爱好唱歌,我的班级是" + this.className + "班!");
}
} }然后,创建一个Student类的对象,并调用introduce()方法:public class StudentTest {
public static void main(String[] args) {
Student student = new Student("张强", "男", 21, "软件1");
student.introduce();
}
}运行结果:大家好!我是张强,我今年21岁,兴趣爱好唱歌,我的班级是软件1班!
阅读全文