- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
考虑以下代码,用于在单击按钮时更改按钮的颜色。
import java.awt.Color;
import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import javax.swing.JButton;
import javax.swing.JFrame;
public class ChangeColor {
public static void main(String[] args) {
JButton button = new JButton();
button.setBackground(Color.BLUE);
button.addActionListener(new AbstractAction() {
private static final long serialVersionUID = 1L;
@Override
public void actionPerformed(ActionEvent e) {
button.setBackground(Color.RED);
}
});
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(button);
frame.setSize(200, 200);
frame.setVisible(true);
}
}
它不起作用,因为这个错误:
Cannot refer to the non-final local variable defined in an enclosing scope
如何在不将按钮标记为最终按钮的情况下执行此操作?
最佳答案
一种解决方案是从 ActionEvent 参数获取 JButton 的引用:
@Override
public void actionPerformed(ActionEvent e) {
// the source here refers to the object that provoked this method to occur
JButton sourceBtn = (JButton) e.getSource();
sourceBtn.setBackground(Color.RED);
}
你也可以让按钮成为一个字段,而不是局部变量。
您也可以将其声明为最终的。
请注意,您永远不会使用您发布的代码,因为大多数重要的 GUI 程序不会像您正在做的那样在静态 main 方法内创建,而是在符合 OOP 的情况下完成GUI 类。
例如:
import java.awt.Color;
import java.awt.event.ActionEvent;
import javax.swing.*;
public class ButtonColorChange extends JPanel {
private JButton button = new JButton(new ButtonAction("Press Me"));
public ButtonColorChange() {
add(button);
}
private static void createAndShowGui() {
JFrame frame = new JFrame("ButtonColorChange");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(new ButtonColorChange());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGui();
}
});
}
}
class ButtonAction extends AbstractAction {
private static final Color COLOR_1 = Color.BLUE;
private static final Color COLOR_2 = Color.RED;
public ButtonAction(String name) {
super(name);
int mnemonic = (int) name.charAt(0);
putValue(MNEMONIC_KEY, mnemonic);
}
@Override
public void actionPerformed(ActionEvent e) {
AbstractButton btn = (AbstractButton) e.getSource();
Color c = btn.getBackground();
c = c == COLOR_1 ? COLOR_2 : COLOR_1;
btn.setBackground(c);
}
}
编辑关于您的进一步问题:
Actually the code in my question it's only an example, the real code is something like your.
然后最好显示真实代码,或者最好是模拟真实代码的最小可编译可运行示例。
(a) It is preferred to use e.getSource() or to make button a field?
要么。如果要在多个按钮上使用同一个 Action,而您只对按下的按钮感兴趣,则使用 getSource()
。如果您的 Action 或 ActionListener 是一个内部类,那么一个字段就可以正常工作。如果没有,那么您可以根据问题的另一个答案通过构造函数参数将变量传递给 Action。
(b) You say that Also you could declare it as final but I receive this error: The local variable may not have been initialized. What I'm wrong?
如果没有您的真实代码,很难说清楚,但您可能不会在声明按钮的同时对其进行初始化。
(c) I my GUI program I don't launch the frame from a thread (id est I write the code of createAndShowGui() in the main(), without the thread). What is the difference?
我的代码保证我的 GUI 将在 Swing 事件线程上启动,为了线程安全应该这样做。
关于java - 在没有最终修饰符的情况下更改按钮颜色onclick,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32315715/
考虑需要与 iOS 5 和 iOS 6 兼容的应用。 有没有办法标记纯粹为了 iOS 5 兼容性而存在的代码,以便当部署目标最终更改为 iOS 6 时它显示为编译错误(或警告)? 像这样: #IF_D
我想我知道答案但是...有什么方法可以防止全局变量被稍后执行的 修改吗? ?我知道全局变量首先是不好的,但在必要时,有没有办法让它成为“最终”或“不可变”?欢迎黑客/创造性的解决方案。谢谢 最佳答案
class Foo { final val pi = 3 } 是否每Foo对象有一个 pi成员?因此我应该把 pi在伴生对象中? 最佳答案 如果您担心内存占用,您可以考虑将此字段移动到伴随对象中。
随着可用的 Web 开发框架种类繁多,似乎总是有一种“尝试新事物”的永久动机。因此,我们中的一些人发现自己用一个框架换另一个框架,从来没有对最终结果完全满意。当然,总会有一个特定的 Web 框架可以完
在MDN中指出, If the finally block returns a value, this value becomes the return value of the entire try
我正在尝试用 JavaScript 制作一个基本的井字棋类型游戏。尽管 x 和 y 值在 if 语句的范围内,但除最后一个之外的所有空格都有效。 我不知道为什么最后的 else if 语句不起作用。
我想知道如何使用PowerMock模拟kotlin最终类(class),以便进行测试。我按照指南测试了Java最终类,但仍然出现此错误 Cannot subclass final class 有什么办
考虑以下设置: // debugger class public class Debug { // setting public final static boolean DEBUG
给定以下类(class): public class SomeClass { private final int a; public SomeClass(int a) {
This question already has answers here: What does “final” do if you place it before a variable?
我有一个类PasswordEncryptor,它使用org.jasypt.util.password.StrongPasswordEncryptor作为其字段之一,因为我试图使应用程序“可集群”所有类
我今天有一个关于 StreamReader 类的问题。具体使用文件名参数初始化此类例如: TextReader tr = new StreamReader(fileName); 显然,当此操作完成后,
我想弄清楚什么是使用带锁的 try/finally 的最佳方式。 当我在同一个地方有 lock() 和 unlock() 时,我只使用 try/finally block 作为 JavaDoc还建议:
在 Java 中序列化后是否可以将 final transient 字段设置为任何非默认值?我的用例是一个缓存变量——这就是它是 transient 的原因。我还有一个习惯,就是制作不会改变的 Map
在this问题说 final transient 字段在序列化后不能设置为任何非默认值。那么,为什么我为 aVar1 变量设置了 3,为 aVar3 变量设置了 s3? import java.io.
在Xbox上进行开发时,我使用的是F#规范中最终工作流程的修改版。 Xbox上的.net框架似乎不支持尾部调用。因此,我必须在编译时禁用尾部调用优化。 尽管起初看来这种限制会阻止在计算表达式中使用任何
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
我想让我的带有自定义对象的ArrayList成为最终对象,以便对象在设置后无法更改。 我试图这样声明它: private final ArrayList XML = new ArrayList();
我有一个场景,我需要类似于 .NET 的 try-catch-finally block 的内容。 在我的尝试中,我将创建一个#temp表,向其中插入数据并基于#temp处理其他数据集。 先是CATC
对此可能有一个简单的答案,但尝试充分使用 Butterknife,将一些 findViewById 转换为 @BindViews,并注意到我无法在需要声明为 Final 的 View 上使用 Bind
我是一名优秀的程序员,十分优秀!