java考题程序填空答案(2)
发布时间:2021-06-06
发布时间:2021-06-06
this.id = id;
this.score = score;
}
(3)
//接收姓名和学号二个参数的构造方法
public DefaultTest (String name, String id) {
= name;
this.id = id;
}
(4)
//实现抽象方法,方法体为打印出学生的姓名与成绩
public void printMsg() {
System.out.println("姓名:"+name+"成绩:"+ score);
}
(5)
}
3、 编写程序实现窗口,包含一个标签、一个文本框和一个按钮,当用户单击按钮时,程序把文本框中的
内容提制到标签中。(使用AWT)
import java.awt.*
import java.swing.*//引入相关包
(1)
public class MyFrame{
public MyFrame(){
Frame fr = new Frame();
fr.setLayout(new FlowLayout());//设置窗体的布局为FlowLayout
(2)
Label lbl = new Label(“Init info”);
TextField txt = new TextField(30);
Button btn = new Button(“Sure”);
fr.add(lbl);
fr.add(txt);
fr.add(btn);
btn.addActionListener(new Monitor());//给按钮注册监听器
(3) fr.setVisible(true);//使用窗体可见,并设置大小
(4)fr.setSize(400,400,400,200);
}
//定义内部类监听ActionEvent事件
(5) class Monitor implements ActionListener
{
public void actionPerformed(ActionEvent e){
lbl.setText(txt.getText());
}
}
public static void main(String[] args){
new MyFrame();
}
}
4、 定义接口Student,该接口中有一个无参、无返回值的方法prtMsg;定义类College,包括的私有属性
有id和name,包括一个接收学生学号和姓名的构造方法,并且实现Student接口。
下一篇:阀体工艺过程卡A3