私は1つのインターフェースと2つのクラスを持つプロジェクトを持っています:-
public interface Account {
int add();
}
public class AccountImpl implements Account{
@Override
public int add() {
return 0;
}
}
メインメソッドを持つ1つのクラス
public class Testing {
Account account;
public static void main(String[] args) {
Testing t = new Testing();
t.call();
}
public void call() {
int a = account.add();
}
}
int a = account.add();
アカウントの値が nullであるため、行で Null ポインター例外が発生します。
私はJavaを初めて使用します。これを削除するのを手伝ってもらえますか?