The Pragmatic Craftsman :: Simplicity from complexity : by Stanley Kubasek ::

OO Design Heuristics for Classes and Objects (Riel)

Writing good OO code is not easy. Here’s a set of rules of thumb when creating classes. These are taken from the Object-Oriented Design Heuristics book by Riel — good stuff.

    2.1 All data should be hidden within its class.

    2.2 Users of a class must be dependent on its public interface, but a class should not be dependent on its users.

    2.3 Minimize the number of messages in the protocol of a class.

    2.4 Implement a minimal public interface that all classes understand [e.g., operations such as copy (deep versus shallow), equality testing, pretty printing, parsing from an ASCII description, etc.].

    2.5 Do not put implementation details such as common-code private functions into the public interface of a class.

    2.6 Do not clutter the public interface of a class with things that users of that class are not able to use or are not interested in using.

    2.7 Classes should only exhibit nil or export coupling with other classes, that is, a class should only use operations in the public interface of another class or have nothing to do with that class.

    2.8 A class should capture one and only one key abstraction.

    2.9 Keep related data and behavior in one place.

    2.10 Spin off nonrelated information into another class (i.e., noncommunicating behavior).

    2.11 Be sure the abstractions that you model are classes and not simply the roles objects play.

ReferenceObject-Oriented Design Heuristics, Riel

Related Posts

Favorite Quote

Topics

Tags

Archive

Currently Reading

Info

© 2001-2012 Stanley Kubasek About me :: Contact me

Me on Twitter

The key to performance is elegance, not battalions of special cases. — Jon Bentley and Doug McIlroy - 4 days agoThe ability to simplify means to eliminate the unnecessary so that the necessary may speak. — Hans Hoffmann - 9 days agoSo much complexity in software comes from trying to make one thing do two things. — Ryan Singer - 15 days agoGood code is short, simple, and symmetrical - the challenge is figuring out how to get there. — Sean Parent - 17 days agoSimplicity carried to the extreme becomes elegance. — Jon Frankli - 21 days ago

»see more

Recent Entries