vote up 4 vote down star
5

I am working on a nuts-and-bolts* book on object-oriented programming. The intent is to produce a short but practical tutorial and reference for the major concepts, pitfalls, practices, and promises of OOP while staying language-agnostic and steering clear of theoretical esoterica.

Each chapter will be devoted to a single concept or topic (including its limitations as well as its uses and advantages). Some of the obvious ones (so far) are:

  • Introduction
  • Data
  • Code
  • Object
  • Message
  • Method
  • How an OO interpreter works
  • Late/Dynamic Binding, Static Binding
  • Reflection
  • Information Hiding
  • Classes
  • Prototypes
  • Encapsulation
  • Polymorphism
  • Inheritance
  • Composition
  • Composition vs Inheritance
  • Classes vs Prototypes vs Templates vs Macros
  • Interfaces
  • Contracts
  • Generics
  • Events
  • Exceptions, Callbacks, and Error Handling
  • Object Lifecycle
  • Design Patterns
  • Refactoring
  • Unit Testing
  • Test-Driven Development
  • Behavior-Driven Development
  • Domain-Driven Design
  • Aspect-Oriented Programming
  • Glossary
  • Appendices (optional catch-all for related topics, future directions, UML, tools, etc.)

(topics in italics are taken from suggestions below)

What other topics/concepts/chapters would you suggest, and why?

ADDENDUM: suggestions for intended common chapter structure (esp. quotes!) also welcome:

  • Chapter title
  • Chapter quote - like "What has it got in its pocketses?" -- Gollum, for Encapsulation.
  • primer-style overview of concepts built from atoms of previous chapter's concepts
  • Short illustrative story or analogy
  • More formal definitions, as appropriate
  • Brief history or background, as appropriate
  • Exposition and illustration
  • Obvious uses
  • Possible pitfalls and traps
  • Practical advice on topic
  • Code Examples

I am planning to use a different language for the examples in each chapter, so the book would not be tied to a particular language - C#, C++, Java, SmallTalk, Ruby, Python, Perl, etc. Additional language suggestions welcome also.

ADDENDUM 2: It might be fun to have the 'homework problems' at the end of each chapter lead up to the implementation of a simple OOP scripting language, so the reader will truly understand how OOP works 'under the hood' [hence the title, Object Mechanics].

[* by nuts-and-bolts I mean a practical how-to guide that primarily explains and demonstrates the mechanisms, with minimal theory and math]

flag
Perhaps objects and classes can be put together? – blizpasta Nov 19 '08 at 20:45
@blizpasta: they could, but they are distinct concepts. Javascript, for example, has objects but not classes. – Steven A. Lowe Nov 19 '08 at 20:46
If you need proof readers, I like to volunteer. – Gamecat Nov 19 '08 at 21:10
If you want to make it public, any chance of using wikibooks (or your own wiki) and hitting us here at SO up for help writing/editing? Speaking of that, I think we of SO should help and contribute to wikipedia...their SE and CS articles (some of them anyway) are in rough shape... – Thomas Owens Nov 20 '08 at 18:03
@[Thomas Owens]: that's a good idea, but the book will most definitely be for sale, not for free. I can't afford to spend a few hundred hours researching and writing a book for nothing ;-) – Steven A. Lowe Nov 20 '08 at 19:35
show 7 more comments

29 Answers

vote up 5 vote down check

Limitations.” I know that this might not seem useful but I think that any good discussion of a technique must show its limitations. Besides its obvious use, it also gives a much better understanding of the technique itself. Often, techniques are mistaken for something else because they seem all-encompassing.

Edit:

Examples for limitations vary depending on context. For example, in C++ (as a multiparadigm language) you should know when to make a clean cut and separate your object-oriented framework from a (potentially much simpler) STL-based solution. However, since you want to stay language-agnostic (basically a good thing), you could perhaps consider the problem of spurious dependencies. While OOP promotes docoupling and the reduction of interdependencies per se, it still often introduces a great deal of loose interface dependencies, making a potentially small system unwieldy (for example, try creating an IQueryable LINQ provider).

Another limitation of “pure” OOP suffers from the same problems as other pure techniques, i.e. the reluctance to compromise. Java's intentional omission of operator overloading comes to mind (notice that this is a purely syntactical problem, however).

Another point was raised by Stepanov (in a highly polemic manner), namely the mathematical limitation of the object oriented model. Don't be blinded by his aggressive tone, he has some true things to say. Applying OOP to a highly algorithmic framework is almost always a bad idea. Generic type systems à la Haskell (or even C++ concepts) potentially offer a more dynamic approach. In that context, it might also be worth mentioning that mixing generic type systems with OOP brings its own share of problems, e.g. covariance of generic subtypes.

That being said, these cases are surely exceptions to the rule.

link|flag
an excellent suggestion - can you posit an example? – Steven A. Lowe Nov 19 '08 at 20:43
thanks for the examples! – Steven A. Lowe Nov 20 '08 at 22:57
accepted as "the answer" so the Stats page will quit pestering me – Steven A. Lowe Dec 27 '08 at 18:34
lol - if i write the phrase "covariance of generic subtypes" in my book, i will have totally violated the "nuts-and-bolts" goal ;-) – Steven A. Lowe Mar 17 '09 at 4:01
vote up 2 vote down

How about a problem-oriented approach? Examples of using OO well, and examples of using it badly? I've seen entirely too many cases of making mountains out of molehills, all in the name of the wonderfulness of objects.

Just as structured programming was a remedy for piles of spaghetti code, OO was a remedy for raw-data manipulation see Alan Kay on OOP. Somebody (not he) convinced others that every brain-wave should be a class, so what we have now is piles of macaroni code.

Like every good idea, OO is best in moderation.

link|flag
thanks mike, some excellent pointers. I have never seen OO used badly, but i have seen some very bad OO code - encapsulation violated all over the place, superflous messages and classes, denormalized state, etc. Is that the kind of thing you meant? – Steven A. Lowe Nov 23 '08 at 19:29
i had hoped to help teach the reader how to do OOP well, which includes recognizing when it is not the appropriate paradigm. I do not know what you mean by 'macaroni code' though...? – Steven A. Lowe Nov 23 '08 at 19:31
Macaroni code is where the code is chopped up into little pieces and the big picture is only in somebody's head or on their whiteboard. – Mike Dunlavey Nov 24 '08 at 12:54
... and good luck, Steve – Mike Dunlavey Nov 24 '08 at 12:56
show 3 more comments
vote up 2 vote down

Edit:

  • Attribute, Annotation, especially with its relationship to declarative security
  • Concurrency, Java's synchronized method and notify() and wait()
  • Multi-tier architecture
link|flag
thanks! late binding vs static binding, absolutely must discuss. DI is worth mentioning as an extension of the 'factory' design pattern. 'Interoperability' can you define? COM and IDispatch are Windows-specific technilogies. RTTI is C++'s attempt at reflection. But reflection is a must-discuss! – Steven A. Lowe Nov 23 '08 at 19:42
@Steven, by interoperability I mean the OO's history of attempting to exchange objects between machines and platforms: CORBA, COM, WS, etc.. I know COM is Windows specific, but I think it deserves some mention in OO history as it could invoke method dynamically a la reflection in 90s. – eed3si9n Nov 23 '08 at 20:03
vote up 2 vote down

TDD, refactoring, unit-testing, et. all in a OOP book ??! AOP, BDD, DDD.. Design patterns.. these are all books in their own right. I'd suggesting keeping them out for fear of creating a book that tries to be everything for everyone and doesn't get read due to its size. (After all the effort you put into it.. nothing could be worse than that)

My Suggestion:

  1. Keep it thin. Keep it light. Maybe a few levels over the Head First style.
  2. Get the OOP ideas of Encapsulation, Polymorphism, Inheritance-Composition and do a stand-up job with them. This would be the make or break point.. anything above this would be a bonus. This could be 60-70% of your book.
  3. Object Thinking / Modelling.. how not to carry your procedural baggage into an OO language. Something like the essence of David West's book. Highlight benefits of Low Coupling and High Cohesion. The object-as-a-person metaphor is something you must include.. even if you have to cut a piece of the pie for Mr.West
  4. Basic object terminology that you might hear in the wild: messages, parameter passing, protocol-interfaces, events, etc.etc. a page or two each with illustrated examples
  5. Minimal UML needed to get by to communicate with fellow designers. APPnP does a great job at this.
  6. Dragons of OO: Anti-patterns basically.. like overengineering, tangled inheritance hierarchies, composition over inheritance in desc order of prevalence in the real world.
  7. Appendix: Limitations as Conrad has pointed out.. but this won't be more than a couple of pages.

So much for now :)

link|flag
excellent advice, thank you! my intent is very close to what you say, the 'add-ons' (AOP, TDD, etc.) may be collapsed into a See Also chapter ;-) – Steven A. Lowe Dec 8 '08 at 6:09
vote up 2 vote down

Good programming means multi-paradigm programming. If you're only focusing on OOP, that's fine... But realize that the best, cleanest code results from the intelligent composition of multiple techinques, not just OOP concepts.

If you want to really contribute to the community, make sure you explain when functional programming is a better fit than OOP, when reflection/structural typing is a better fit than static objects, and why duck typing is almost always a better approach than static typing.

OOP is just one of the 5 paradigms, and it's not the best tool for every job.

http://computerlinguist.com/2008/09/04/use-scripting-languages-when-possible/

link|flag
interesting points, well worth consideration. Not so sure about the duck typing comment though, perhaps you'd like to elaborate on this stackoverflow.com/questions/289176/… – Steven A. Lowe Nov 22 '08 at 16:28
Upvoting, and as long as we're posting blog links, try mine mdunlavey.blogspot.com . It's a pretty different take on all this. – Mike Dunlavey Nov 22 '08 at 19:20
vote up 1 vote down

I'd put something in there about ORMs and how they can allow for more OO work with databases.

link|flag
worth considering, thanks! – Steven A. Lowe Nov 19 '08 at 20:47
vote up 1 vote down

An "Introduction" chapter would be great! =)

link|flag
doh! [darn 10-character limit!] – Steven A. Lowe Nov 19 '08 at 20:44
vote up 1 vote down

What about interfaces and inheritance.

Interfaces, because it is a whole new approach. Inheritance because it is an important and easily misused concept of OO.

Perhaps even OO metrics.

link|flag
double doh! thanks! – Steven A. Lowe Nov 19 '08 at 21:07
No thanks, just good luck with the book and keep us informed if its on sale (or if you need proof readers) – Gamecat Nov 19 '08 at 21:09
will do! proofreaders are the unit testers of the publishing world ;-) – Steven A. Lowe Nov 19 '08 at 21:10
vote up 1 vote down

Maybe a "Future of OOP" chapter, if that's not too much into "theoretical esoterica"?

For example, take a look at what Trygve Reenskaug (inventor of the MVC pattern) is working on!

link|flag
interesting, but definitely too far into theoretical esoterica ;-) – Steven A. Lowe Nov 19 '08 at 22:45
vote up 1 vote down

Object modeling? UML?

If you have inheritance do you want to cover composition too?

link|flag
composition, thank you! – Steven A. Lowe Nov 19 '08 at 22:42
vote up 1 vote down
  • UML, at least class diagram
  • design techniques and design principles (OCP, LSP, DIP, SRP ...)
  • design smells

Do you plan to have a common structure to introduce all the concepts? Could you share it as well?

link|flag
thanks! will probably try to avoid UML since there are tons of books on it already – Steven A. Lowe Nov 19 '08 at 22:46
common structure added – Steven A. Lowe Nov 19 '08 at 22:48
vote up 1 vote down

A glossary would help.

link|flag
noted and logged, thanks! – Steven A. Lowe Nov 19 '08 at 22:47
vote up 1 vote down

Warnings against class graphs that contain circular references.

Warnings against the temptation to make a 'Global' object to store all your 'global' variables.

The advantages of information hiding.

link|flag
good pitfalls and suggestions, thank you! – Steven A. Lowe Nov 19 '08 at 22:53
vote up 1 vote down

I suggest an explicit contrast with procedural programming.

link|flag
not a bad idea, thanks! – Steven A. Lowe Nov 19 '08 at 22:54
vote up 1 vote down

Object Property vs. (data) member.

link|flag
thanks for the reminder! – Steven A. Lowe Nov 23 '08 at 19:36
vote up 1 vote down
  • Exceptions and error handling
link|flag
thanks for the reminder! – Steven A. Lowe Nov 23 '08 at 19:37
vote up 1 vote down

I'd like to see a table explaining how "each" language supports every concepts in such a book.

link|flag
thanks! i hesitate to include such a thing because it will likely change between writing and publication - and change again a year later - and omit the cool new language that comes out the year after that... but that would be good info, perhaps on a supporting website... – Steven A. Lowe Nov 23 '08 at 19:40
that''' be one HUGE book. – Gishu Dec 8 '08 at 5:13
vote up 1 vote down

One of the biggest difficulties people have in picking up OOP is being able to model algorithms in terms of objects. You should consider devoting a chapter to the general issue of thinking about problems in terms of objects.

Humans have a tendency to classify physical objects according to shared characteristics. We often think of things in terms of hierarchical relationships, aggregates and collections. It may be useful to introduce these ideas by way of analogy in terms of concrete everyday examples.

A former coworker of mine had a job interview at Taligent back in its heyday. One of the interview questions was: "Is the universe object-oriented?" Her answer was to laugh and declare "That's the stupidest question I've ever heard!" (They hired her.)

I think the serious answer to that question would be "No, but the human mind is object-oriented."

link|flag
yes - the trick is to think about patterns of communicating objects instead of 'algorithms'. And also to remember that classifications are arbitrary - any set of properties and behaviors can be declared as a 'class', the question is, is it the right set of properties and behaviors for your problem? – Steven A. Lowe Nov 23 '08 at 19:59
vote up 1 vote down

I didn'see anything about templates and genericity, which albeit not Object Oriented specific are supported in several OO languages. .

link|flag
hmmm...i was planning on talking about templates as a contrast to classes; not sure what you mean by 'genericity'? – Steven A. Lowe Nov 23 '08 at 19:37
I meant generic programming, what can be done with C++ templates and Java generics. – philippe Nov 24 '08 at 7:20
vote up 1 vote down

Perhaps you could write a section to compare OOP to other styles of programming

  • Procedural
  • Logical
  • Functional
  • Aspect Oriented

and point out the pros and cons of each. I'd be interested in reading that.

link|flag
i think any comparative info would have to be incidental, otherwise i would have to teach all paradigms in order to compare and contrast them in any significant manner (I cannot assume reader familiarity with any paradigm!). You might enjoy en.wikipedia.org/wiki/Programming_paradigm – Steven A. Lowe Dec 8 '08 at 6:12
Thanks, never thought to check the obvious for some reason. :) Still, I think that perhaps an appendix or brief overview of other common paradigms as a launching point might be interesting. Maybe a summary of what issues the paradigm was designed to solve. Dunno, think I'm rambling. – Jamal Hansen Dec 8 '08 at 14:49
vote up 1 vote down

You can add Common Lisp CLOS to the languages, it is a very impressive implementation of OOP (read The Art of the Metaobject Protocol if you haven't, it is an enlightening book on OOP, defining a metaobject protocol for CLOS).

link|flag
Thanks, I read the book years ago but had forgotten about it. – Steven A. Lowe Dec 11 '08 at 17:01
vote up 1 vote down

You can also add Lua and Javascript to the languages, their prototype-oriented OOP is minimal but easily extensible. See Joose for a nice example of Javascript extension.

[Edit to answer comment]

Lua provides facilities & syntactic sugar to support an object-oriented programming style. Chapter 16 of Programming in Lua (PiL) describes simple OOP programming styles in Lua.

For more advanced features, like a super() function, you can write your own OOP module in Lua (I'm trying to write one here) or use one of these.

link|flag
Thanks! I thought Lua was a procedural scripting language, not OO, am I mistaken in that? – Steven A. Lowe Dec 11 '08 at 17:00
I edited the post to give pointers to Lua OOP programming styles & modules. – Sébastien RoccaSerra Dec 12 '08 at 12:25
vote up 0 vote down

contracts, i almost forgot about contracts

like interfaces, but with more depth/detail

the difference between the two is: a class implements an interface, but satisfies a contract

the notion of "duck typing" is closer to contracts than interfaces, in some ways

link|flag
vote up 0 vote down

Version control

editor

complier

Integrated Development Environment

link|flag
thanks - while excellent tools, they are not specific to OOP – Steven A. Lowe Nov 19 '08 at 22:47
vote up 0 vote down

behavior-driven development - if i'm going to talk about TDD and DDD, i can't leave out this other TLA ;-)

link|flag
vote up 0 vote down

Domain-specific languages (and/aka Model-Driven Development) are worth mentioning, if for no other reason than to deflate the hype they seem to be getting these days

note: every application constitutes a domain-specific language for the application domain

link|flag
Can't get rid of me, I know. If you want, check my contrarian blog: mdunlavey.blogspot.com – Mike Dunlavey Nov 24 '08 at 17:45
vote up 0 vote down

object lifecycles are important to consider in system design:

  • each object should be created, used, and destroyed in a manner that is consistent with the system states that it represents
  • an object's lifecycle is considered "complete" if it is created, used, and destroyed while maintaining a consistent/valid state
  • every object's lifecycle must be complete for the system to be "closed"

possible quote for this chapter:

I am not afraid of death, I just don't want to be there when it happens. -- Woody Allen
link|flag
vote up 0 vote down

one of the interesting issues in refactoring is the "telltale signs" that a class is missing. In general, switch statements and if statements may indicate a missing class.

Sometimes the refactoring replaces the if/switch via polymorphism (each switch case becomes a method in a subclass, assuming the switch condition is a type discrinimator), while sometimes the refactoring replaces the if/switch via encapsulation. The latter case is a bit more subtle to spot, but in general there will be some association manifested in the if/switch statements that binds values together that do not belong to the same class but probably should. See this question's answer for a simple example.

a full discussion of refactoring is beyond the intended scope of the book (Fowler's got that covered pretty well already) but some of the semantics are worth discussing so that the reader understands the principles behind the mechanisms.

link|flag
vote up 0 vote down

You should consider a chapter devoted to "Why inheritance is a bad idea". Also you might want to read Joshua Bloch's book, Effective Java.

link|flag
thanks - but if inheritance is a bad idea, then object-oriented programming is a bad idea (without inheritance, a language is merely object-based, not object-oriented, by definition) – Steven A. Lowe Nov 23 '08 at 19:17
Bloch's book does have some general gems in it, thanks! – Steven A. Lowe Nov 23 '08 at 19:44

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.