[Solved] Confusion as to initialization (or lack thereof) of object
This is the problem: AccountManager accountmanager= new AccountManager (account, t, accountmanager); You’re declaring a variable, and trying to read from that variable in the same statement that gives it an initial value. Here’s a simpler example, to show how it’s nonsensical: int y = 10; int x = y + x; What would you expect … Read more