我已经尝试了一段时间来访问我的主类中的一个变量:
public class Results extends JFrame {
public static void main(String[] args)
{
System.out.println(doble);
}}
它在一个动作监听器中,像这样
public Results ()
{
// Create a JPanel for the buttons DOUBLE AND NOT DOUBLE
JPanel duplicate = new JPanel(
new FlowLayout(FlowLayout.CENTER));
JButton doblebutton = new JButton("DOUBLE");
doblebutton.addActionListener(new ActionListener(){
private int doble;
public void actionPerformed(ActionEvent ae){
doble++;
System.out.println("Doubles: " + doble);
}
});
}
我已经尝试了 5 种方法来做到这一点,但似乎不可能。有什么想法吗?