Java方法调用预期

前端之家收集整理的这篇文章主要介绍了Java方法调用预期前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是一个 java程序,有两个按钮用于更改整数值并显示它.
但是在IntelliJIDEA中有两行
increase.addActionListener(incListener());
decrease.addActionListener(decListener());

继续显示错误’预期方法调用’.
我不知道该怎么做才能解决这个问题.
任何帮助将不胜感激
谢谢

注意:完整代码附在下面.

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

public class Main extends JDialog {
public JPanel contentPane;
public JButton decrease;
public JButton increase;
public JLabel label;

public int number;

public Main() {
    setContentPane(contentPane);
    setModal(true);

    increase = new JButton();
    decrease = new JButton();
    increase.addActionListener(incListener());
    decrease.addActionListener(decListener());

    number = 50;
    label = new JLabel();
}

public class incListener implements ActionListener {
    public void actionPerformed (ActionEvent event) {
        number++;
        label.setText("" + number);
    }
}

public class decListener implements ActionListener {
    public void actionPerformed (ActionEvent event) {
        number--;
        label.setText("" + number);
    }
}

public static void main(String[] args) {
    Main dialog = new Main();
    dialog.pack();
    dialog.setVisible(true);
    System.exit(0);

}
}

解决方法

incListener和declListener是类,而不是方法.

尝试

increase.addActionListener(new incListener());

顺便说一下,重命名你的类名,使它们以大写字母开头

原文链接:https://www.f2er.com/java/126809.html

猜你在找的Java相关文章