インターフェイスを作成しましたが、actionPerformed メソッドを呼び出すと、エラーが発生します。
私の方法:
public void actionPerformed(ActionEvent evento){
Button active;
active = (Button) evento.getSource(); //line 144
if(active==botonSalir)
mainF.dispose();
...
}
主な方法:
public static void main(String [] args){
InterfaceE objetoM = new InterfaceE();
objetoM.actionPerformed(); //line 195
}
私が得るエラーは次のとおりです。
Exception in thread "main" java.lang.NullPointerException
at InterfaceE.actionPerformed(InterfazceE.java:144)
at InterfaceE.main(InterfaceE.java:195)
のパラメータはInterfaceE()
何ですか?