Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

What Is An Object?


Visual Tools 96: The Software Engineer

Allen is a programmer, educator, and OO design consultant. He can be reached at http://www.holub.com or at allen@

holub.com.


Bjarne Stroustrup once characterized object-oriented (OO) programming as "buzzword-oriented programming," and certainly one of the most abused (or at least misunderstood) buzzwords in the pack is "object" itself. Since the idea of an object is so central, a discussion of what exactly an "object" is seems in order.

First and foremost, an object is a collection of capabilities. In practical terms, this means that an object is a collection of functions that implement the capabilities, but the emphasis must be on what an object can do -- what capabilities does it have -- not on how those capabilities are implemented. Of course, most objects will require some data in order to implement their capabilities, but the make up of that data is -- or at least should be -- irrelevant. The capabilities are exercised by sending the object a "message" that asks the object to do something. You shouldn't care what fields are inside the class definition. More to the point, you should be able to radically change what's inside the class definition, and as long as the interface (the message handlers) isn't affected, the users of the class will be unaffected. Let's look at a few examples.

An ATM Example

Many books use an ATM machine to demonstrate OO concepts, not because any of us will be implementing ATMs, but because an ATM is a good analogue for both OO and client/server architectures. Look at the central bank computer as a server object and an ATM as a client object. Most procedural database programmers would look at the server as a repository of data and the client as a requester of the data. Such a programmer might approach the problem of an ATM transaction as follows:

1.The user walks up to a machine, inserts the card, and punches in a PIN.

2.The ATM formulates a query of the form "Give me the PIN associated with this card," then verifies that it matches the one provided by the user. The ATM sends the PIN to the server as a string, but the returned number is stored in a 16-bit int to make the comparison easier.

3.The user then requests a withdrawal.

4.The ATM formulates another query, this time: "Give me the account balance." It then stores the resulting balance in a 32-bit float.

If the balance is large enough, the machine dispenses some cash, then tells the ATM to "Update the balance" to the original amount less the amount of the withdrawal. (This isn't how real ATM machines work, by the way.) So what's wrong with this picture? A 32-bit float can represent, at most, 2 gigabucks (assuming no cents and one sign bit). What happens when Bill Gates walks into the bank wanting to open an account? Last time I looked, he was worth about 12 gigabucks, and Bill has no intention of giving a penny away any time soon, so that won't help. Similarly, the 16-bit int used for the PIN can hold, at most, four decimal digits. What if you need to change to a five-digit PIN? The only recourse is to change the ROMs in every ATM in the world (since there's no telling which one Bill will use), to use 64-bit doubles instead of 32-bit floats to hold account balances, and to 32-bit longs to hold five-digit PINs. That's an enormous maintenance problem, of course.

A similar situation exists in most procedural programs. Change the database schema or the definitions of a few central data types, and virtually every subroutine in the program might have to be rewritten. It's exactly this sort of maintenance nightmare that OO programming aims to solve. To see how, let's recast the earlier problem in an object-oriented way. Look at the central server as an object that supports two capabilities -- verifying a PIN and authorizing a transaction. The handshake now occurs as follows:

1.The ATM gets the PIN and then asks the server to verify it; that is, it sends the message: "Is this the correct PIN for this card?"

2.The server answers back with "Yes" or "No."

3.The user then request a withdrawal, and the ATM asks the server to authorize the withdrawal by sending a "Can this person withdraw this amount?" message to the server.

4.The server, again, comes back with "Yes" or "No."

No data (account balances or PINs) are being shipped to the ATM, so there's no need to change them when the server code changes. (Data can be sent to the server as strings.) The maintenance manager is happily sleeping in the back office instead of running around changing ROMs.

OO and C/C++

A second example highlights one of the biggest mistakes made by C programmers when they move from C to C++. C++ is really just C with a few features added to make it easier to implement an object-oriented design. I, for one, think that there's absolutely no reason to use C++ unless you are indeed implementing an OO design -- the language has so many problems that's it's not worth messing with it if you aren't going to take advantage of its strengths. You're better off just using C. (On the other hand, if you are doing an OO design, C++ makes the implementation dramatically easier.) Many C programmers try to program in C++ as if they were programming in C, however, implementing procedural systems in C++ rather than OO systems. This practice tends to produce awful code.

One of the most common problems is a misinformed attempt to turn an existing struct definition into a class by making the data private and then providing a get and set function for each field. This is not object orientation -- it's just a very complicated way to access a field that could be more easily accessed with a dot or arrow. In an OO system, the data wouldn't be accessed at all by nonmembers of the class. Rather, messages sent to an object would request that the object exercise some capability, and the message handler might use the data members of the class to do its job. Remember, structs and classes are very different at the design level. A struct is a collection of data, a class is a collection of capabilities.

I saw a good example of this problem in a human-resources package that the programmers thought they were moving to OO. They took an existing "employee" record and tried to transmogrify it into an employee class by making the fields private and providing get and set functions. One problem is that an employee class will almost certainly have a salary attribute, and unfortunately, the original "employee" record had a "salary" field, so the programmers equated to the two. An attribute is not the same as a field, however. An attribute is a defining characteristic of an object. A salary serves to differentiate an employee from a generic person, for example. Without the salary, there would be no difference between an employee and a person. Moreover, an attribute does not necessarily map to a field in the class. The salary might be stored in an external database, for example, with the employee storing only the information needed to retrieve the attribute from the database. If the employee does store the salary internally, it might be stored in a float, a double, a binary-coded decimal array, a string -- there's no telling. What, then, could a get_salary function return? One of the main tenants of OO design is that it should be possible to radically modify the private components of a class definition without affecting the users of the class at all. The salary field might be a float today, but there's no guarantee that it will stay that way. Similarly, the matching get_salary function might return a float today, but what if the internal representation changed in such a way that a float wouldn't work anymore? Say, for example, you needed to return an object of type money which worked like a float but handled the round-off-error-on-pennies problem. Changing the function's return value would break every subroutine that called the function. It's exactly this rippling effect of a change that OO techniques are meant to avoid.

What the programmers should have done is decided what capabilities the employee has -- what it can do, not what fields it has. Put another way, you should never access an attribute directly, rather you should ask the object to do something with its attributes for you. In the case of an employee, there should be no message of the form "Give me your salary." You should not extract the attribute from an object in order to do something with it (like draw it in a window). Rather, you should tell the object itself to do the operation ("Print your salary in this window"). The same reasoning would apply to a name: not, "Give me your name," but rather "Draw your name here." This way, the way that the attribute is stored inside the object is utterly irrelevant. As long as the salary gets printed, you should not care how it's stored.

Still, sometimes you need to extract an attribute from an object. The salary might be needed by a payroll_department class to generate a paycheck, for example, and it might not be appropriate for an employee object to control the amount of its own paycheck. Though there are several solutions to this problem, the best probably would be for the payroll_department class to ask the employee for its salary. The salary should be encapsulated in a salary object, however, and the salary object would implement all the capabilities needed to compute a paycheck (such as "Divide yourself by," "Subtract this from yourself," and of course, "Draw yourself in this window"). This way, the representation of the salary is still hidden. The returned salary object should, of course, be a constant. You don't want a payroll_department to be able to modify a salary, and you don't want the exposed salary to be different from the one stored in the employee.

A final example of this structure is a string class, which should expose no information about how the characters are stored internally. There should be no get buffer function in your string class, for example. In C++, you should have no conversion from string to char* or equivalent. All of the C functions that work on strings should be members of the string class. Not: "Give me your buffer so I can print it," but "Print yourself." Not: "Give me your buffer so I can use strcmp() to compare you with another string" but "Compare yourself against this other string." This way you are completely isolated from the way that the string stores characters internally. A character could be stored in a char, wchar_t, a multibyte character string, or something that nobody's thought of yet -- it doesn't matter. In the case of compare-yourself, the string could even adjust the comparison algorithms to reflect the language being used (French, English, Japanese, or whatever).

This structure implies, of course, that there are no functions in the system that take char* arguments -- all strings must be string objects. The only place that char* would appear is an argument to a string-class constructor. And that's another aspect of OO systems -- they tend to be all-or-nothing propositions. Everything must be a string object: There's no way to mix string objects with arrays of char and get the maintenance advantage promised by object orientation.

Conclusion

The point of all this is that you can now make changes to the structure of an object without affecting any of the code that uses the object -- and that's one of the main strengths of an object-oriented approach. Changes made in one place are highly localized (as are bugs). This localization not only makes code easier to maintain, but also easier to debug and to write initially.


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.