up vote 87 down vote favorite
62
share [g+] share [fb]

I see a lot of lip service and talk about the most "elegant" way to do this or that. I think if you spend enough time programming you begin to obtain a sort of intuitive feel for what it is we call "elegance". But I'm curious. Even if we can look at a bit of code, and say instinctively "That's elegant", or "That's messy", I wonder if any of us really understands what that means. Is there a precise definition for this "elegance" we keep referring to? If there is, what is it?

Now, what I mean by a precise definition, is a series of statements which can be used to derive questions about a peice of code, or a program as a whole, and determine objectively, or as objectively as possible, whether that code is "elegant" or not.

May I assert, that perhaps no such definition exists, and it's all just personal preference. In this case, I ask you a slightly different question: Is there a better word for "elegance", or a better set of attributes to use for judging code quality that is perhaps more objective than merely appealing to individual intuition and taste?

Perhaps code quality is a matter of taste, and the answer to both of my questions is "no". But I can't help but feel that we could be doing better than just expressing wishy washy feelings about our code quality. For example, user interface design is something that to a broad range of people looks for all the world like a field of study that oughtta be 100% subjective matter of taste. But this is shockingly and brutally not the case, and there are in fact many objective measures that can be applied to a user interface to determine its quality. A series of tests could be written to give a definitive and repeatable score to user interface quality. (See GOMS, for instance).

Now, okay. is Elegance simply "code quality" or is it something more? Is it something that can be measured? Or is it a matter of taste? Does our profession have room for taste? Maybe I'm asking the wrong questions altogether. Help me out here.

Bonus Round

If there is such a thing as elegance in code, and that concept is useful, do you think that justifies classifying the field of programming as an "Art" capital A, or merely a "craft". Or is it just an engineering field populated by a bunch of wishful thinking humans? Consider this question in the light of your thoughts about the elegance question.

Please note that there is a distinction between code which is considered "art" in itself, and code that was written merely in the service of creating an artful program. When I ask this question, I ask if the code itself justifies calling programming an art.

Bounty Note

I liked the answers to this question so much, I think I'd like to make a photographic essay book from it. Released as a free PDF, and published on some kind of on demand printing service of course, such as "zazz" or "tiggle" or "printley" or something . I'd like some more answers, please!

link|improve this question
show 8 more comments
feedback

closed as not constructive by Jonathan Sampson Nov 5 '11 at 14:19

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

protected by skaffman Nov 5 '11 at 14:59

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

83 Answers

1 2 3
up vote 200 down vote accepted
+350

It's the intersection of simplicity and functionality.

link|improve this answer
25  
What an elegant response. +1 – Matt Briggs Feb 18 '09 at 22:08
10  
Define "simplicity" and "functionality" – Breton Feb 18 '09 at 22:10
31  
Define "define" – brian Feb 18 '09 at 22:10
1  
simplicity = its readable and easily groked functionality = it works – Doug T. Feb 18 '09 at 22:12
3  
en.wikipedia.org/wiki/Ockham_razor - I think Einstein said something like: as little as possible, but nothing less – meade Feb 19 '09 at 19:06
show 10 more comments
feedback

Elegant code is code that does in a few crystal clear lines what you would think would take heaps of complex code to achieve.

link|improve this answer
1  
and this is why this is an elegant answer :) – hasen j Feb 23 '09 at 2:38
feedback

My rough definition of "elegant code":

Code which is written such that the number of lines/statements is minimized while the readability and functionality is maximized.

Or, to put it another way:

The ratios of readability to number of statements and functionality to number of statements are both high.

I've specifically included readability here. There are plenty of "one-liners" that get a lot done, but if no one can tell what they are doing, they aren't elegant.

link|improve this answer
1  
How do you quantify readability and functionality? – Wim Coenen Feb 23 '09 at 0:05
1  
But here's the beauty of the question: can you quantify elegance? – Adrian Jun 27 '11 at 20:22
feedback

Simplicity is hard to build, easy to use, and hard to charge for. Complexity is easy to build, hard to use, and easy to charge for. — Chris Sacca

link|improve this answer
1  
Thanks a great one! :) – epatel Feb 22 '09 at 22:52
feedback

"Elegant" is a good word choice because it implies a sense of aesthetics. Deciding what is elegant and what isn't is an aesthetic judgement in code just as in other fields. It is subjective. What's elegant to one programmer might not be to another.

To expand the definition a little, you could say elegant code is code that gets something non-trivial done in a way that is simple. I don't think anyone disagrees on the non-trivial part, it's the simplicity that is the bugbear. Some people think simple means "as terse as possible", other people think it is "as easy to understand as possible", and many opt for some intersection of the two.

EDIT: In response to the "bonus" question about whether code, in itself, justifies calling programming an art as opposed to "merely" a craft. This, too, is subjective, and my short answer is "no."

Programming-as-art involves the entire process. Architecture, design, construction, even testing. That doesn't mean that code in itself can't possess beauty, but the means of execution and expression of that beauty are what make it artful. Asking whether code in itself makes programming an art is like asking whether prints of the great masters in themselves make offset printing an art. The result may be beautiful, but if the process by which it is achieved is mechanical and lifeless, devoid of expression, that process is not art.

On the other hand, tough requirements handled by a great architects and programmers who design and implement a system that not only gets the job done, but gets it done with elegance and a sense of self-expression, with all the geeky passion of a Picard vs. Kirk debate, I would call that art. Not the code in itself, the entire effort. The code could be said to be a work of art, but taken alone it does not make programming an art.

Programmers make programming an art.

link|improve this answer
show 3 more comments
feedback

A long time ago I thought about what attributes contribute to elegance. Here is the list that I came up with. Some of these apply to hardware as well, and there is some overlap, but anyway:

  • accurate, correct (operates exactly as instructed)
  • adaptable (easy to modify to suit other purposes)
  • attractive (aesthetically pleasing (but preferably not at the expense of functionality))
  • compact (small, lightweight, portable)
  • comprehensive (complete, thorough, solves for the general case)
  • consistent (predictable operation and user interface)
  • controllable (easy for operator to maintain complete control)
  • convenient (desirable to use)
  • customizable (tweakable)
  • durable (robust, rugged)
  • economical (inexpensive, cost-effective, low total cost of ownership)
  • effective (well-suited to intended purpose)
  • efficient (fast or otherwise resource-efficient)
  • environmentally-friendly (non-toxic; not wasteful)
  • ergonomic (comfortable; not harmful to operator)
  • extensible (easy to add new features)
  • failsafe (prevents undesired operation; discourages misuse; enforces proper operating sequences; capable of failing gracefully and safely (but preferably not silently))
  • functional (designed with function as a priority to form)
  • interoperable (compatible with other systems)
  • intuitive (user-friendly, unambiguous user interface)
  • maintainable (components are easy to access, repair, and replace)
  • modular (components are interchangeable, or system is interchangeable as a whole)
  • orthogonal (features operate independently of each other, or in any sequence, or all similar features are equally capable)
  • practical (economical; quickly and easily deployable)
  • precise (results are reproducible)
  • quiet (not contributing to noise pollution)
  • recyclable (components can be safely and easily recycled to reclaim materials)
  • reliable (stable, dependable, fault-tolerant)
  • reusable (components can be used for other purposes)
  • safe (non-toxic; alerts operator to potential problems)
  • scalable (suitable for use with larger-than-optimal workloads)
  • responsive (responds quickly to operator changes or changes in operating conditions)
  • secure or securable
  • self-correcting (automatically adjusts to improve precision)
  • self-tuning (automatically adjusts to improve efficiency based on current operating conditions)
  • side-effect-free (does nothing beyond the stated function)
  • simple (straightforward, no superfluous features)
  • standards-compliant (conforms to established standards)
  • sustainable (can operate continuously)
  • upgradeable (easy to replace components to increase speed or capacity)
  • verifiable (testable, provable)
  • versatile (multipurpose, flexible)
link|improve this answer
9  
Ironically, the list of properties here is anything but elegant. :-) – Jeffrey Hantin Feb 23 '09 at 3:36
show 2 more comments
feedback

May I offer a different viewpoint?

Every time I hear the word Elegant these days, I cringe. I understand the concept and all, but the applications I've seen almost always trade obvious, explicit code for short, tricky patterns that aren't as well known.

I'm not disagreeing with the concept, but as used it's an excuse to write small snips of "Fun" code that are harder to decrypt than their more verbose counterparts.

Also I have no problem with fun, but if it's harder for the next guy to pick up--even slightly harder, I'd have a problem with it.

Everything we do as engineers should be targeted at making the thing you do once (writing the code) contain all the difficulty and complexity--that should be the part that takes the most time in other words. The things that are done repeatedly (read, analyze, debug, rewrite) should be the things you try to optimize.

Often brevity is extremely advantageous, but to change:

if(done) return true;

to

return true if done

isn't shorter, it doesn't add to the functionality--it SEEMS better when you write it because it lets you express yourself differently...

But it's different it's a new syntax--something that, regardless of coolness has to be learned and understood as a secondary syntax by all who want to understand that language. (Also, you don't see that it's a branch by scanning the left side of your code, something you can always do in C-like languages formatted in a traditional manner)

When you accept the solid fact of additional syntax being a minus, this just doesn't have any justification--so people that like the "Fun" of it call it elegant.

Just for an example, I went and googled elegant code and grabbed the first example I found:

skanky code:

if(0 == x) {
    y = 0;
} else {
    y = 1;
}

Elegant Code

y = (0 <x);

Again, I totally get it, I use this construct all the time. It IS more elegant (not my example, if you want to congratulate/complaint to the author, Google it yourself).

Also, I guarantee that someone down the line, someone you may be relying on to get his task done on time, will pause 20 seconds on the second where nobody would ever question the first.

I know everyone wants to argue this, they always do, but be serious. NOBODY will have a problem with that first example, SOMEBODY will stumble on the second that would not on the first. (I know because I've described the second construct to people before).

Also the argument that they should know what they are doing is irrelevant, they don't. I've talked to them and I know they don't, and no amount of "should" fixes that--yet I have no direct control over their employment or my working with them. (and the "You should quit" argument is not a good one either, they are everywhere--except my current company, but we work on their code)

link|improve this answer
6  
see, I would actually say that the first "skanky" example is the elegant code. It's simple, efficient and readable. – pfunk Feb 19 '09 at 16:58
9  
Not to mention the fact that the "elegant" solution changes the condition being tested. "Elegant" code of the sort in this example is a really good way to introduce subtle logic bugs into the codebase ;-) – Mike Spross Feb 23 '09 at 7:29
4  
Mike Sposs is so right. The elegant solution is different and no-one else noticed. Case closed, elegant code is harmful, lets all move on now. (I'm not joking) – MarkJ Feb 24 '09 at 11:05
3  
@MarkJ: Malarky. Elegant code is a good thing, by definition. The question is "what is elegant?" I would agree with pfunk that the "skanky code", while not "elegant", perhaps, is better than the alternative. Sounds like we just need good definitions...which is what the point of the question is. – Beska Feb 24 '09 at 18:48
3  
"Elegant" is language- (and language-culture-) specific. To experienced C programmers, your "elegant" example is obvious. To beginners (or part-timers) in C, it's confusing. To Java programmers, it's wrong (it returns a boolean instead of an int). – joel.neely Feb 25 '09 at 13:03
show 18 more comments
feedback

In code I believe elegance often comes from choosing appropriate data-structures. One could say doing a bottom-up-design when also thinking on a top-down-design. If one gets all problem solving dimensions aligned as simple I think that is pure elegance. Measurable? No, but you know it when you see it. (Read Zen and the Art of Motorcycle Maintenance )

alt text

Picture from Thinking Forth

Shakespeare puts it very concise "Brevity is the soul of wit"

link|improve this answer
show 2 more comments
feedback

Forgive me for being silly, but I would have to say that elegant code is code that is elegant.

From Dictionary.net:

Elegant \El"e*gant\, a. 1. Very choice, and hence, pleasing to good taste; characterized by grace, propriety, and refinement, and the absence of every thing offensive; exciting admiration and approbation by symmetry, completeness, freedom from blemish, and the like; graceful; tasteful and highly attractive; as, elegant manners; elegant style of composition; an elegant speaker; an elegant structure.

Of course this is, to some extent, subjective. Taste and preference surely come into play, but I think that "elegant" is a very appropriate word to describe good code, and elegance certainly is a virtue in programming.

link|improve this answer
feedback

To paraphrase Justice Stewart, you will know it when you see it.

link|improve this answer
show 1 more comment
feedback

I think the term 'elegant' for code was probably inherited from the use of the term in mathematics, and is directly analogous to it.

From wikipedia

Mathematicians describe an especially pleasing method of proof as elegant. Depending on context, this may mean:

  • A proof that uses a minimum of additional assumptions or previous
    results.
  • A proof that is unusually succinct.
  • A proof that derives a result in a surprising way (e.g., from an
    apparently unrelated theorem or collection of theorems.)
  • A proof that is based on new and original insights.
  • A method of proof that can be easily generalized to solve a family of similar problems.

I think all these points can equally be applied to elegant code.

Bertrand Russell described mathematical beauty thus:

Mathematics, rightly viewed, possesses not only truth, but supreme beauty — a beauty cold and austere, like that of sculpture, without appeal to any part of our weaker nature, without the gorgeous trappings of painting or music, yet sublimely pure, and capable of a stern perfection such as only the greatest art can show. The true spirit of delight, the exaltation, the sense of being more than Man, which is the touchstone of the highest excellence, is to be found in mathematics as surely as poetry.

And again, in a somewhat hifalutin way, I believe this can also be applied to elegant code.

Does this justify calling good code 'art'?

Hell, yes!

But in reality most code is like http://en.wikipedia.org/wiki/My_Bed

link|improve this answer
show 2 more comments
feedback

The code cannot be elegant as a whole without an elegant design. I think design elegance can be roughly measured using the MIT or "worse is better" approach measured by degrees of:

  • Simplicity
  • Correctness
  • Consistency
  • Completeness
link|improve this answer
feedback

Elegant code is obviously correct (as opposed to code which is not obviously incorrect). It's clear where and how to change elegant code if the requirements change. It generally is short, and always to the point.

link|improve this answer
feedback

Elegant code is beautiful, like a good haiku or a powerful poem. It's clever, without being arrogant or amused with itself. It's clear, without being obvious. There's nothing to take away and there's nothing to add. Elegant code is truth in the most Keatsean sense of the word.

link|improve this answer
feedback

Elegant code is like reading a good book that it is easy to read and well organized. Main sub-routines read like a table of contents to other functions and classes. Functional areas are broken into logical partitions like chapters. In elegant code, you will not find multi-page sub-routines or logic that is repeated in many places.

link|improve this answer
feedback

"Make everything as simple as possible, but not simpler." -Einstein

Essentially, you strive first for absolute simplicity while still getting whatever it is you're trying to do done. You then make it nice and readable while preserving simplicity as much as possible. At the risk of sounding cliché, remember that programmer time is much more expensive than computer time, and besides, a smart compiler should come up with the most efficient way to implement your code anyway; keeping this in mind, write code for humans to read, and let the compiler worry about extra optimization.

An example of this is using bit shifts to perform multiplication with powers of 2. It will only serve to confuse people, not impress them with your leethaxxor skills.

link|improve this answer
show 1 more comment
feedback

Is it something that can be measured?

NO.

Or is it a matter of taste?

YES.

link|improve this answer
feedback

In one of the Stack Overflow podcasts, Joel said elegant code has fewer moving parts than you intuitively think are necessary. It's so simple that it doesn't seem like it could possibly work at first glance, but it does.

I can't find it in the transcripts, but I think it was around #40.

link|improve this answer
feedback

No, there almost certainly isn't a definable definition of 'elegant' code, and more than there is of 'good' code or 'understandable' code. However that doesn't mean that the concept is useless or 'just a matter of personal preference'.

There may be no precise definition of 'good' music - whether Beethoven is better than Mozart is a matter of preference. However Beethoven and Mozart are both better than a kid beating a tin drum (unless you are the parents - we'll consider that an outlier).

So while the concept isn't definable, most people do actually agree on it, to a great extent. Maybe you should be looking for helps with the concept rather than a definition.

BONUS ANSWER

No programming is not an art just because there are some incompletely-defined concepts in it. Art also has some defined concepts, such as colour, but that doesn't make it a science. You might also like to think about just how well-defined the concept of a mathematical 'proof' is.

link|improve this answer
feedback

Elegant code is what you're left with when you can't take anything else away from it.

link|improve this answer
feedback

I found the best definition of elegance here: http://www.changethis.com/29.01.ElegantSolutions

Elegance is the simplicity found on the far side of complexity. An elegant solution is one in which the optimal outcome is achieved with the minimal expenditure of effort and expense.

So, an example I love to give is using sizeof with the C preprocessor to compile out vararg functions. Before C99, this was the best way to get rid of unused debug code for logging functions.

link|improve this answer
feedback

I feel that elegance == high-quality design. And I will venture that elegance is an objective quality, albeit something that cannot be measured directly. Very simply:

A good software design minimizes the time required to create, modify, and maintain the software while achieving acceptable run-time performance.

This is from James Shore's piece, Quality With a Name. Reading this article was a truly enlightening experience for me.

Unfortunately, many of these quantities are not measurable in practice. But in my mind there is no question that this is the right way to define elegance.

link|improve this answer
2  
I see what you mean. Yes, total time is measurable in retrospect. Mathematically speaking, what you want to minimise is the expected total time, given probability distributions on future change requests and coder competence levels, and I don't know how to estimate that in advance. – j_random_hacker Feb 24 '09 at 11:36
show 4 more comments
feedback

Elegant code for me is all about how it translates into language. The most elegant code reads more or less like a novel, it expresses complex relationships with the correct level of detail without exposing the reader to more detail than they need to understand the current portion.

foreach(Letter letter in mailbag.ForAddress(currentLocation))
{
    currentLocation.Deliver(letter);
}

As opposed to:

foreach(Letter letter in mailbag.Items[currentLocation.GetKey()])
{
    currentLocation.DropBox.Add(letter);
}

Encapsulation and naming are key to this process. If one is looking at the above code they probably have no interest in the mechanism for storing the letters or obtaining the unique identity for the address. If they are interested this code they can open the mailbag code and example the .ForAddress() function, but they don't have to read it if they're not interested in that.

To me this is elegance, you only see what is relevant. I want to see the postman deliver letters, I don't want to read about how he walks down the road or organizes his mailbag. The important part is to keep the short term load on the mind small. You don't want to have to take a deep breath halfway through the code to double check what is still in scope or have to trace a long line through a method to see what occurs when a particular variable has a particular value. The hope is that you can convert the code into a story which easier to comprehend and requires less translation from the requirements document.

One of my favourite examples of elegance is the state pattern. This:

if(direction == Direction.North)
{
    g.DrawTriangle(new Point(0, 10), new Point(5, 0), new Point(10, 10));
}
else if(direction == Direction.East)
{
    g.DrawTriangle(new Point(0, 0), new Point(10, 5), new Point(0, 10));
}
else if(direction == Direction.West)
{
    g.DrawTriangle(new Point(10, 0), new Point(0, 5), new Point(10, 10));
}
else if(direction == Direction.South)
{
    g.DrawTriangle(new Point(0, 0), new Point(5, 10), new Point(10, 0));
}
else
{
    throw new InvalidOperationException(String.Format("Unrecognised direction: {0}", direction));
}

Becomes this:

direction.Draw(g);

and that's beautiful.


As a footnote I do have to back track a little to state that elegance can take on many different forms. Readability is just one of these and you have to strike a balance with other forms of elegance. Other forms can include things like delivering on schedule. I'm sure we've all experienced a scenario where a cute little hack prevents us from having to completely re-organize the entire API for the sake of elegance to accommodate a rarely encountered error condition.


As for the bonus about "Art" I'm unsure if this is a relevant side-note in regards to just programming. Any action that a human performs can be considered art. From the precision and order that an experienced brick layer achieves in their brickwork from a dancer interpreting the slight gait that a disabled person has when they walk down the street. All can be interpreted as art.

I like to think as programming as a mechanism of story telling, which I guess some might consider as an art form. Software is created from a story from a client about a problem. This is then translated into requirements which is then translated into code. The fascinating thing about code is the level of detail that is added from the original requirements and the elegance is expressing that level of detail without overwhelming the reader. A book that slowly unfolds.

Perhaps a good analogy would be the experience one gets when reading Wikipedia due the nature of hyperlinks. The anathema of this would be the content of the hyperlinks presented inside the article being read (spaghetti-pedia!).

link|improve this answer
1  
Wow! another excellent answer to the bonus round. – Breton Feb 25 '09 at 1:55
feedback

I'm fascinated by the concept of elegance. My particular view is that elegant code is not only simple, but well suited to its language. I think that an elegant program keeps to its languages paradigm completely.

For example, there is no way to write quicksort elegantly in Scheme (or lisp, or haskell, etc) while it can be done quite elegantly in C.

link|improve this answer
show 4 more comments
feedback

Not sure who said it first, but often a reasonable working definition of an elegant solution is one that can be implemented and understood with less effort than is required to document it.

Interesting contrast: remove the word understood, and the result is a reasonable working definition of an obfuscated solution.

link|improve this answer
feedback

Elegant code is clear, correct, and performant. All three of these are difficult marks to hit, and it's important to realize that "not elegant" is not the same as "wrong".

Clear

Self-documentation is (correctly) held up as an ideal to which all code should aspire, and so is an important part of elegance. Importantly, clear is not the same as simple, though code which is one is often both.

This is also a very subjective property, which highlights the fact that elegance is in the eye of the beholder. An experienced Python programmer may see a complicated list comprehension and see elegance. A beginner, on the other hand, may well fail to "comprehend" entirely.

Correct

Obviously, code which does not do that which is was designed to cannot be elegant. More subtly, however, elegance often implies an absence of "surprising behavior", such as bugs. In this sense, code can change from elegant to non-elegant without being altered if bugs are discovered or requirements change. Again, elegance is revealed to be subjective.

Performant

If a task is not completed in a reasonable amount of time, using a reasonable amount of resources, the code which performs that task is not elegant. This is the most-often forgotten aspect of elegance, as "clever" code can often appear to be both clear and correct. If it is not also performant, however, it is not elegant.

A perfect example is the bubble sort. Is it clear? Yes, it's simple enough that even most beginning programmers grasp it easily. Is it correct? Well, yes, it unarguably gets the job done. But is it elegant? I doubt anyone would call it that. The reason, whether consciously understood or not, is that it isn't performant.

link|improve this answer
feedback

An elegant solution is one that grasps the essence of the problem: "oh, when you think of it like this, it's simple".

It's not that it's elegant, but that it's true. Beauty is truth, truth beauty, and with this aesthetic ye don't need to remember all those complex special cases.

link|improve this answer
show 1 more comment
feedback

One of my college professors said "Genius is stating something which, once it has been stated, is obvious to everyone."

I believe the same thing is true of elegance in programming. Elegant code not only makes the task appear easy, it makes it obviously correct. It makes me smack my forehead and think,

Well, of course that's right, and it's so much simpler than what I was doing!

link|improve this answer
feedback

Read "The Elements of Programming Style" by Kernighan + Plauger. It's one example after another of ugly inelegant previously published code rewritten to be elegant. You'll learn by example.

link|improve this answer
feedback

It is code that is:

as simple as possible for the problem (which implies that it is readable and easy to maintain) AND as fast and efficient as possible (which implies that it works well)

link|improve this answer
feedback
1 2 3

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