Math.sqrtharrysChecking.getBalance
public class BankAccount{ public void transfer(double amount, BankAccount other) { withdraw(amount); // i.e., this.withdraw(amount); other.deposit(amount); } . . .}