java学生的类Student,成员变量有姓名、性别、年龄,声明类Student的构造方法,

用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();
}

}

下面图是测试结果,希望可以帮助到你,祝你生活愉快。

温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答