定义接口 Student ,该接口中有一个无参、无返回值的方法 prtMsg ;定义类 College ,包括的私有属性有 id 和 name ,包括一个接收学生和姓名的构造方法,并且实现 Student 接口。 interface Student{ (1) _________________ } (2) _________________//College 类的声明,实现 Student 接口 { (3)_____________ // 定义私有成员变量 id 和 name ,类型自定 (4)______________// 构造方法声明和定义,接收二个参数 (5)________________// 实现 prtMsg 方法的声明 { //prtMsg 的方法体 System.out.println(id+ name); } }