RSS

CEK.io

Chris EK, on life as a continually learning software engineer.

'Cheerful, Detached, and Merciless': Composition and Code Arrangement in Ruby (POODR: Chapter 8)

I am working my way through programming-related reading, currently with Sandi Metz’s “Practical Object-Oriented Design in Ruby”. Click here for more posts about POODR.



Sandi Metz describes object-oriented composition—the combining of simple, independent objects into larger, more complex wholes, in which the larger object is connected to its parts via a ‘has-a’ relationship—and code arrangement in Ruby more generally:

Composition allows you to combine small parts to create more complex objects such that the whole becomes more than the sum of its parts. Composed objects tend to consist of simple, discrete entities that can easily be rearranged into new combinations. These simple objects are easy to understand, reuse, and test, but because they combine into a more complicated whole, the operation of the bigger application may not be as easy to understand as that of the individual parts.

Composition, classical inheritance, and behavior sharing via modules are competing techniques for arranging code. Each has different costs and benefits; these differences predispose them to be better at solving slightly different problems.

These techniques are tools, nothing more, and you’ll become a better designer if you practice each of them. Learning to use them properly is a matter of experience and judgment, and one of the best ways to gain experience is to learn from your own mistakes. The key to improving your design skills is to attempt these techniques, accept your errors cheerfully, remain detached from past design decisions, and refactor mercilessly.

As you gain experience, you’ll get better at choosing the correct technique the first time, your costs will go down, and your applications will improve.

Cheerful, detached, and merciless. New descriptors of a virtuous programmer?