使用 class定义类别 可根据类别来建构对象 Account account= newAccount (i Account account2 =newAccount(123-45671000)i 要透过公开成员来操作对象或取得对象信 息的话,可以在对象名称后加上「.」运算 符来进行 account. getBalance()i account deposit(1000.0)i使用class定义类别 • 可根据类别来建构对象 • 要透过公开成员来操作对象或取得对象信 息的话,可以在对象名称后加上「.」运算 符来进行 Account account1= newAccount(); Account account2 =newAccount("123-4567", 100.0); account1.getBalance(); account1.deposit(1000.0);