You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
340 B

public class BankAccountTest {
public static void main(String[] args) {
BankAccount account = new BankAccount("622848123456789", "张三");
account.showAccountInfo();
account.deposit(1000);
account.withdraw(300);
account.setOwnerName("李四");
account.showAccountInfo();
}
}