当前位置 : 主页 > 编程语言 > c++ >

13Java基础练习--面向对象

来源:互联网 收集:自由互联 发布时间:2021-07-03
(1)定义描述学生的类Student,有一个构造方法对属性 进行初始化,一个outPut方法用于输出学生的信息。 (2)定义主类,创建两个Student类的对象,测试其功能。 public class Student {Stri
(1)定义描述学生的类Student,有一个构造方法对属性 进行初始化,一个outPut方法用于输出学生的信息。 (2)定义主类,创建两个Student类的对象,测试其功能。
public class Student {
String name;
int age;
char gender;


Student(String name,int age,char gender){
	this.name=name;
	this.age=age;
	this.gender=gender;
	
}
void output(){
System.out.print(this.name +" "+this.age+" "+this.gender);
}
}


public class text3 {
public static void main(String[] args) {
	Student myStudent1=new Student("刘妍", 21, 'F');
	myStudent1.output();
	System.out.println();
	Student myStudent2=new Student("jack", 20, 'M');
	myStudent2.output();
}
}
网友评论