gpt4 book ai didi

java - 类不是抽象的,不会重写 ActionListener 中的抽象方法 actionPerformed(ActionEvent)

转载 作者:太空宇宙 更新时间:2023-11-04 11:13:03 25 4
gpt4 key购买 nike

请帮忙。我对编码并不陌生,但对java很陌生。我不知道我做错了什么。我正在使用一本书来学习java,下面的代码是我目前正在处理的代码。我访问书籍网站并下载了该程序的源代码,它给了我同样的错误消息。请有人帮忙。我知道有人问过这个问题,但我被困住了,真的需要一些帮助。

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

public class TitleBar extends JFrame implements ActionListener {
JButton b1;
JButton b2;

public TitleBar() {
super("Title Bar");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLookAndFeel();
b1 = new JButton("Rosencrantz");
b2 = new JButton("Guildenstern");
b1.addActionListener(this);
b2.addActionListener(this);
FlowLayout flow = new FlowLayout();
setLayout(flow);
add(b1);
add(b2);
pack();
setVisible(true);
}

public void actionPerformed(ActionEvent evt) {
Object source = evt.getSource();
if (source == b1) {
setTitle("Rosencrantz");
} else if (source == b2) {
setTitle("Guildenstern");
}
repaint();
}

private void setLookAndFeel() {
try {
UIManager.setLookAndFeel(
"com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"
);
SwingUtilities.updateComponentTreeUI(this);
} catch (Exception exc) {
System.err.println("Couldn't use the system "
+ "look and feel: " + exc);
}
}

public static void main(String[] arguments) {
TitleBar frame = new TitleBar();
}
}

最佳答案

你的类(class)适合我。尝试这个导入

import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;

关于java - 类不是抽象的,不会重写 ActionListener 中的抽象方法 actionPerformed(ActionEvent),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45789159/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com