java学生的类Student,成员变量有姓名、性别、年龄,声明类Student的构造方法, 5
用java定义一个表示学生的类Student,成员变量有姓名、性别、年龄,声明类Student的构造方法,编写方法getInfor获得姓名、性别、年龄并输出,编写方法cr...
用java定义一个表示学生的类Student,成员变量有姓名、性别、年龄,声明类Student的构造方法,编写方法getInfor获得姓名、性别、年龄并输出,编写方法cry输出“呜呜呜…”, 编写方法smile输出“哈哈哈…”。编写程序完成创建2个Student类的对象并以此测试其方法
展开
展开全部
代码如下,共两个类,一个Student类,一个测试类。
/**
* Student类
*/
public class Student {
private String name;
private String gender;
private int age;
// 无参构造方法
public Student() {
super();
}
// 有参构造方法
public Student(String name, String gender, int age) {
super();
this.name = name;
this.gender = gender;
this.age = age;
}
/**
* cry方法
*/
public void cry() {
System.out.println(name + "在呜呜呜...");
}
/**
* smile方法
*/
public void smile() {
System.out.println(name + "在哈哈哈......");
}
}
/**
* 测试类
*/
public class Test {
public static void main(String[] args) {
Student s = new Student("张三", "男", 23);
Student s1 = new Student("李四", "女", 20);
s.smile();
s1.cry();
}
}
下面图是测试结果,希望可以帮助到你,祝你生活愉快。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询