public void transfer(double amount, BankAccount other){ balance = balance - amount; other.balance = other.balance + amount; // Modifies explicit parameter}