java考题程序填空答案(2)

发布时间: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接口。

java考题程序填空答案(2).doc 将本文的Word文档下载到电脑

精彩图片

热门精选

大家正在看

× 游客快捷下载通道(下载后可以自由复制和排版)

限时特价:7 元/份 原价:20元

支付方式:

开通VIP包月会员 特价:29元/月

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信:fanwen365 QQ:370150219