- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
该程序只需向面板添加按钮,单击按钮时屏幕应变成指定按钮的颜色。基本上我需要更改蓝色按钮做完全相同的事情,但是使用匿名内部类,我觉得我有点走在正确的轨道上,但我收到了一长串错误。我看过很多匿名内部类的例子,我相信我编写的代码是正确的,但是有很多错误与编译器无法找到符号有关,我不完全理解。任何帮助将不胜感激,因为我已经为此工作了 2 天,希望在本周之前修复它。这是我的代码:(很多东西都被注释掉了,这样我就可以一次专注于一个按钮)
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
这是我尝试添加匿名内部类的地方:
class Blue
{
public void start()
{
ActionListener listener = new Blue();
}
public class Blue implements ActionListener
{
public void actionPerformed(ActionEvent event)
{
Object source = evt.getSource();
Color color = getBackground();
color = Color.blue;
setBackground(color);
repaint();
}
}
}
class ButtonPanel extends JPanel //implements ActionListener
{
private JButton yellowButton;
private JButton blueButton;
private JButton redButton;
private JButton greenButton;
public ButtonPanel()
{
//yellowButton = new JButton("Yellow");
//redButton = new JButton("Red");
blueButton = new JButton("Blue");
//greenButton = new JButton("Green");
//add(yellowButton);
//add(redButton);
add(blueButton);
//add(greenButton);
//yellowButton.addActionListener(this);
blueButton.addActionListener(listener);
//greenButton.addActionListener(this);
/*class Red
{
public void red()
{
ActionListener listener = new ActionListener();
redButton.addActionListener(listener);
}
class turnRed implements ActionListener
{
public void actionPerformed(ActionEvent event)
{
setBackground(Color.red);
repaint();
}
}
}*/
}
/*public void actionPerformed(ActionEvent evt)
{
Object source = evt.getSource();
Color color = getBackground();
if (source == yellowButton) color = Color.yellow;
else if (source == blueButton) color = Color.blue;
else if (source == redButton) color = Color.red;
else if (source == greenButton) color = Color.green;
setBackground(color);
repaint();
}
}
class ButtonFrame extends JFrame
{
public ButtonFrame()
{
setTitle("ButtonTest");
setSize(300, 200);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.add(new ButtonPanel());
}
}
public class ButtonTest
{
public static void main(String[] args)
{
JFrame frame = new ButtonFrame();
frame.setVisible(true);
}
}
最佳答案
不要使用listener
变量,而是创建(新创建的)匿名内部类的实例。它是这样完成的:
blueButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event) {
Object source = evt.getSource();
Color color = getBackground();
color = Color.blue;
setBackground(color);
repaint();
}
});
关于java - 由匿名内部类完成的事件处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39491445/
所以 promises 对我来说是相当新的,但我喜欢这个想法。 之前... 我以前用过这个,它只在文件被完全读取并按预期工作后才简单地返回数据: function something{ fo
当我尝试编译时出现以下错误: In member function 'double search::IDAstar::dfs(const State&, double)': 153:18: erro
最接近下面的是什么?不幸的是,下面的方法名称编译错误。 int val = delegate(string s) { return 1; }("test"); 我也尝试了 (...)=>{..
1、评论提交超时: 大家可能会发现,在提交评论非常缓慢时最容易出现“匿名”现象,这种情况主要是由于评论提交时执行时间过长引起的,可能是装了比较耗时的插件(比如Akismet等);很多博
我想在同一个表中使用一个键插入一个匿名表,如下所示: loadstring( [[return { a = "One", b = a.." two" }]] ) 在我看来,这应该返回下表: {
有人知道免费的匿名 smtp 服务吗?我想让我的应用程序的用户能够偶尔向我发送一封匿名电子邮件,而无需配置输入他们电子邮件帐户的服务器。我想我可以为此目的设置一个 gmail 帐户并将凭据嵌入到应用程
我有这个数据补丁: ALTER TABLE MY_TABLE ADD new_id number; DECLARE MAX_ID NUMBER; BEGIN SELECT max(id)
假设我有以下数据框。 Person_info (Bob, 2) (John, 1) (Bek, 10) (Bob, 6) 我想通过保持它们的值(value)来匿名。 Person_info (Pers
根据多个国家/地区的法律要求,我们在日志文件中匿名化用户的 IP 地址。使用 IPv4,我们通常只是匿名化最后两个字节,例如。而不是 255.255.255.255我们记录255.255.\*.\*
我正在学习有关 Scala 的更多信息,但在理解 http://www.scala-lang.org/node/135 中的匿名函数示例时遇到了一些麻烦。 .我复制了下面的整个代码块: object
我正在开设一个 Commerce 网上商店。 我想添加 Commerce 愿望 list ,但现在该模块仅适用于注册用户,因为未注册它不起作用。 我将显示 block 中的角色设置为匿名,但即使在更改
我正在使用发现的 Google Apps 脚本 here让匿名用户将文件上传到我的 Google 云端硬盘。 我想要的是脚本使用表单上输入的名称创建一个文件夹,然后将文件存放在该文件夹中。 到目前为止
我遇到的情况是,我正在等待一些事件的发生。我看到很多关于如何使用命名函数使用 setTimeout 的好例子,但是有没有办法使用某种匿名方法来设置超时? 代码目前看起来像这样: testForObje
我一直在阅读一些关于 Android 内存泄漏的文章,并观看了来自 Google I/O 的这个有趣的视频 on the subject . 尽管如此,我仍然不完全理解这个概念,尤其是当它对用户安全或
我正在尝试适应 Spring JDBC,但让我烦恼的是使用这些匿名类,我们不能传递任何局部变量,除非它们是最终的,这可能很容易安排,但是如果我需要循环一个怎么办?数组还是集合?我无法将“FedMode
我正在尝试将数据输入到 Oracle 数据库中。这将是一个带有多个参数的存储过程……我的意思是像 27 个参数(别问,我没有设计它)…… 现在我必须以某种方式填充此存储过程的参数...存储过程采用的大
我之前问过这个问题:Combine a PartialFunction with a regular function 然后意识到,我实际上并没有问对。 所以,这是另一个尝试。 如果我这样做: va
我想从 C++ 执行一个匿名的 Qt 脚本函数,但不知道要使用的 QScriptContext。 这是脚本: { otherObject.Text = "Hello World"; setTi
我有一个返回 promise 的函数。 (本例中为 foo) 我尝试在声明为匿名的解析函数中调用此函数。 我已经尝试过使用this 但这不起作用。 我的代码是这样的 var foo = functio
这个问题的灵感来自这个 excellent example .我有 ASP.NET Core MVC 应用程序,我正在编写 unit tests为 Controller 。其中一种方法返回带有匿名类型
我是一名优秀的程序员,十分优秀!