- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是一名初学者程序员,我在操作监听器和 GUI 方面遇到了问题。这是我的代码:
主类--
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class prog extends JFrame {
//add instance variable to hold lockd
prog app = new prog();
//create buttons
JPanel row1 = new JPanel();
JButton oneLeft = new JButton("oneLeft");
JButton oneRight = new JButton("oneRight");
JPanel row2 = new JPanel();
JButton twoLeft = new JButton("twoLeft");
JButton twoRight = new JButton("twoRight");
JPanel row3 = new JPanel();
JButton threeLeft = new JButton("threeLeft");
JButton threeRight = new JButton("threeRight");
public prog() {
super("Prog");
setLookAndFeel();
setSize(400, 800);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
GridLayout layout = new GridLayout(3, 2);
setLayout(layout);
//add Listeners
oneLeft.addActionListener(app);
oneRight.addActionListener(app);
twoLeft.addActionListener(app);
twoRight.addActionListener(app);
threeLeft.addActionListener(app);
threeRight.addActionListener(app);
setVisible(true);
}
private void setLookAndFeel() {
try {
UIManager.setLookAndFeel("com.sun.java.plaf.");
} catch (Exception e) {
//ignore error
}
}
public static void main(String[] args) {
prog progApp = new prog();
}
}
我在此类中使用操作监听器时遇到错误:AbstractButton 类型中的方法 addActionListener(ActionListener) 不适用于参数 (prog)。
完整错误:
Description Resource Path Location Type
The method addActionListener(ActionListener) in the type AbstractButton is not applicable for the arguments (prog) prog.java /Experiment/src line 33 Java Problem
The method addActionListener(ActionListener) in the type AbstractButton is not applicable for the arguments (prog) prog.java /Experiment/src line 35 Java Problem
The method addActionListener(ActionListener) in the type AbstractButton is not applicable for the arguments (prog) prog.java /Experiment/src line 34 Java Problem
The method addActionListener(ActionListener) in the type AbstractButton is not applicable for the arguments (prog) prog.java /Experiment/src line 37 Java Problem
The method addActionListener(ActionListener) in the type AbstractButton is not applicable for the arguments (prog) prog.java /Experiment/src line 36 Java Problem
The method addActionListener(ActionListener) in the type AbstractButton is not applicable for the arguments (prog) prog.java /Experiment/src line 38 Java Problem
这是我的监听器类:
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
public class progEvent implements ActionListener {
prog GUI;
String newLine = System.getProperty("line.separater");
public progEvent(prog in) {
GUI = in;
}
public void actionPerformed(ActionEvent event) {
String command = event.getActionCommand();
try {
File numClicks = new File("numClicks.properties");
FileOutputStream outStream = new FileOutputStream(numClicks);
if (command.equals("oneLeft")) {
write(outStream, "oneLeft has been clicked.");
}
if (command.equals("oneRight")) {
write(outStream, "oneRight has been clicked.");
}
if (command.equals("twoLeft")) {
write(outStream, "twoLeft has been clicked.");
}
if (command.equals("twoRight")) {
write(outStream, "twoRight has been clicked.");
}
if (command.equals("threeLeft")) {
write(outStream, "threeLeft has been clicked.");
}
if (command.equals("threeRight")) {
write(outStream, "threeRight has been clicked.");
}
} catch (IOException ioe) {
System.out.println("The file could not be written to.");
}
}
void write(FileOutputStream stream, String output) throws IOException {
output = output + newLine;
byte[] data = output.getBytes();
stream.write(data, 0, data.length);
}
}
我也无法显示我的 GUI。我正在使用一本书来学习它,并使用一个类作为该实验的模板。但我完全卡住了。谢谢!
最佳答案
您正在尝试添加 prog
类的实例作为 ActionListener
,但您的 ActionListener
是 progEvent
代替。您需要添加一个 progEvent Listener = new progEvent();
,然后添加 addActionListener(progEvent)
。
(此外,您在系统属性中拼错了“分隔符”;您将无法检索到您要查找的内容。)
关于java - "The method addActionListener(ActionListener) in the type AbstractButton is not applicable for the arguments",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18222360/
我想向按钮添加事件处理 - 我注意到有两种方法可以做到这一点。 实现 ActionListener 接口(interface),然后将事件监听器附加到按钮。 示例: countButton.addAc
如果我添加一个 Action Listener,那么我总是在括号之间使用“this”。但是这个“这个”代表什么?! 最佳答案 addActionListener 方法将当前类对象作为参数。 “this
我正在用 Java 制作一个按钮 ActionListener,并且 d1.addActionListener(this); 给了我一个关于“this”的错误,但是 d1.addActionListe
当我尝试按照我在网上找到的示例添加 ActionListener 时,它显示一条错误消息,指出“无法在静态上下文中使用它”。是否有任何解决方法,或者我应该完全尝试不同的方法? //Va
所以我正在设计一个聊天室,在我可以阅读套接字之前,我需要完成这个 GUI。基本上我主要使用 TextDemo作为我的向导。我喜欢它的显示方式,所以我认为这是一个很容易开始我的代码的地方。在我的代码中,
这个问题已经有答案了: What is the meaning of "this" in Java? (22 个回答) 已关闭 7 年前。 这可能是一个非常菜鸟的问题,但我就是其中之一,所以如果您能以
我必须扩展Panel的类,并且我希望其中一个类可以使用addActionListener,另一个类可以使用addMouseListener。我知道我必须覆盖这个方法,但我尝试过,但我真的不知道如何。
我正在尝试在Caballo方法中创建一个递归方法,这样我就可以移动骑士,但是我收到了一个NullPointerException,并且递归不起作用,任何人都可以给我一些建议吗?我正在尝试制作一款类
import org.jsoup.Jsoup; @SuppressWarnings({ "unused", "serial" }) public class SimpleWebCrawler exte
我遵循了有关如何执行此操作的教程 - 这是我使用的代码: package soundboard; import javax.swing.*; import java.awt.event.*; publ
我一直在学习更多与 Java GUI 相关的知识。但是,我遇到了一个问题,不确定如何解决。 我有一部分程序(如下所示,但不相关的代码已被删除),除了 JFormattedTextField 变量 (s
import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.util.*; public class C
我正在尝试为游戏创建一个启动器,比如说 PowerTown。但是当我尝试为按钮创建 ActionListener 时,它说不能从静态上下文引用非静态变量。我该如何解决这个问题? package pow
我有这个代码: public void itemStateChanged(ItemEvent e) { if(e.getStateChange() == ItemEvent.
我需要在单击按钮时显示启动屏幕。当我单击按钮时,启动画面必须可见,我会执行一些在后台运行的进程。后台进程完成后,飞溅必须消失。我使用了以下代码,但飞溅不可见。当我在主类中使用相同的代码时,它可以工作。
情况是这样的: 我的理解是,当向方法提供参数时(在本例中,它将是来自“AbstractButton”类的“addActionListener”方法),提供的对象必须是所需的类型(即:“addActio
我有以下代码: JButton button = new JButton("Clear"); button.addActionListener(this); 据我所知,我创建了一个按钮,上面写着“清除
例如: import acm.gui.*; import acm.program.*; import java.awt.event.*; import javax.swing.*; import ac
我有 2 个面板(2 个类,从 JPanel 扩展),1 个框架(1 个类,从 JFrame 扩展) 我的第一个面板 - WelcomePanel: package caro; import java
我正在尝试动态生成按钮并添加一个将按钮名称放入 TextArea 的 ActionListener。我的代码是这样的: int numnotas = model.getColumnCount(
我是一名优秀的程序员,十分优秀!