2.3.2.2 The Object’s Operations
The object’s operations are the set of routines that can perform work using the object’s data. For example, some of the operations that perform functions using teller object might include:
-
get_balance()
-
credit()
-
debit()
In a CORBA system, the body of code you write for an object’s operations is sometimes called the object implementation, which is explained in the next section.
Parent topic: The Object Interface