定义一个类Stu,包括如下属性:学号、姓名、性别、专业、课程,实现以下方法:每个属性的获取和定义,要求至少包含一个构造函数。定义一个接口类,定义方法qcc()用来查询课程。编写一...
定义一个类 Stu,包括如下属性:学号、姓名、性别、专业、课程,实现以下方法:每个属性的获取和定义,要求至少包含一个构造函数。定义一个接口类,定义方法 qcc()用来查询课程。编写一个接口,定义相关选课操作,定义 Stu 实现该接口。
[程序模版]
// 定义一个接口,用于查询课程
public interface 【代码 1】 {
// 根据专业查询课程
public String
qcc (String spe);
}
// Stu 类,并实现接口
public class Stu implements 【代码 2】 {
int ID; // 学号
String name[];// 姓名
char sex; // 性别
String spe; // 专业
Sting cou; // 课程
public Stu (int
ID,String name,char sex
,String spe ,String cou ){
// 实现构造函数,用于初始化信息
【代码段 3】
}
public showInfor(){ // 输出学生的基本信息
【代码段4】
}
public
String qcc (String
spe){
return “welcome to you!”;
}
public static void main(String[] args){
Stu student=new Stu( 【代码 5】 );
String str= student. qcc( 【代码 6】 );
System.out.println(str);
System.out.println(student);
}
}
展开