java编写一个应用程序,其功能为:显示一个图形框架界面,在其图形框架上摆放三个按钮。三个按钮的标

2025-01-05 14:47:10
推荐回答(2个)
回答1:

参考代码和注释如下

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

//本类继承自JFrame,实现了ActionListener接口
public class ButtonFrame extends JFrame implements ActionListener {

JButton jb1,jb2,jb3;
//构造方法: 组件的初始化, 排版, 窗口的设置
public ButtonFrame() {
jb1=new JButton("test1");
jb1.addActionListener(this);
jb2=new JButton("test2");
jb2.addActionListener(this);
jb3=new JButton("test3");
jb3.addActionListener(this);
add(jb1);
add(jb2);
add(jb3);
setLayout(new FlowLayout());
setTitle("窗口");// 窗口标题
setSize(280,220);// 窗口大小
setLocationRelativeTo(null);// 窗口居中
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);// 当窗口关闭时,程序结束
}

//处理按钮点击事件
public void actionPerformed(ActionEvent e) {
System.out.println("Button "+e.getActionCommand());

//比较啰嗦的写法
//JButton jbTemp = (JButton) e.getSource(); 
//if(jb1==jbTemp) {
//System.out.println("Button test1");
//}else if(jb2==jbTemp) {
//System.out.println("Button test2");
//}else if(jb3==jbTemp) {
//System.out.println("Button test3");
//}
}

public static void main(String[] args) {
new ButtonFrame().setVisible(true);//实例化窗口并可见
}
}

效果图

回答2:

写好发你私信了 注意查收