手机版

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文档下载到电脑,方便复制、编辑、收藏和打印
×
二维码
× 游客快捷下载通道(下载后可以自由复制和排版)
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
注:下载文档有可能出现无法下载或内容有问题,请联系客服协助您处理。
× 常见问题(客服时间:周一到周五 9:30-18:00)