10.3 オブジェクトのオペレーションの呼び出し
クライアントプログラムは,オブジェクトリファレンスを使用してオブジェクトのオペレーションを呼び出したりオブジェクトに含まれたデータを参照したりします。オブジェクトリファレンスのさまざまな操作方法は,「10.4 オブジェクトリファレンスの操作」で説明します。
- コードサンプル10-5 オブジェクトリファレンスを使用したオペレーションの呼び出し(C++)
. . . // Invoke the balance operation. balance = account->balance(); cout <<"Balance is $" << balance << endl; . . .
- コードサンプル10-6 オブジェクトリファレンスを使用したオペレーションの呼び出し(Java)
. . . // Invoke the balance operation. System.out.println( "The balance in Account1: $" + account1.balance()); . . .