vote up 7 vote down star

When is it ok to break "the law of demeter"? Any examples??

flag

43% accept rate
This question, and subsequent answers, would be a lot more useful if you could give a brief explanation of "the law of demeter"... – GregD Jan 27 at 18:15
@GregD, just added a link for you. – Rob Wells Jan 27 at 18:29

11 Answers

vote up 0 vote down

Suppose you have this:

function(foo) {
   doSomethingWith(foo.bar.baz.fooBar);
   // ...
}

then if you also

doSomethingElseWith(foo)

in the same function then maybe it's not too bad.

However, clearly if you never do anything with foo, but only use it to get to fooBar, then breaking the law is bad.

Another variation of the law is "don't look for things, ask for them". (Asking for them means "require them as arguments").

See here for a good discussion.

link|flag
vote up 0 vote down

One case I've hit a few times where it would simply make a huge amount of stupid code:

Classes whose purpose is to round up a bunch of elements into some entity, say a customer's order.

Ok, there's an object in there for customer information. There's also one for the graphics. (CAD/CAM system) There's a third holding subdivisions in the order and these contain a fourth that are actually descriptions of the objects involved.

On the CAD side of things the descriptions of how to build the objects have virtually no effect outside the pricing engine--the rest of the program almost totally ignores the groups and works on the list of individual objects.

Note that these various data elements are virtually independent of each other, the top level container exists because there are cases where multiple plans can be loaded and the top level object contains things like I/O routines etc.

To provide routines to drill down into the various objects would be a huge waste of code. Many of the routines deal only with a smaller object and thus don't run afoul of the LoD but there are many cases where you simply need one piece of data that a couple of layers down--to provide ways around this would probably add 10k of code for no benefit other than complying with the LoD.

link|flag
vote up 0 vote down

Sorry to say but this is one law I had never heard of until this post and I don't think it is particularly widely followed in the programming community.

The wikipedia article wrote:

The guideline was invented at Northeastern University towards the end of 1987, and can be succinctly summarized as “Only talk to your immediate friends.” The fundamental notion is that a given object should assume as little as possible about the structure or properties of anything else (including its subcomponents).

I don't see any reference here to the rule being followed in the agile community, in the most influential language design groups or any place else besides Northeastern University, illustrious school though it may be.

For example, on the c2 website, someone wrote

Before reading further please see LawOfDemeterVsInformationHiding, LawOfDemeterMakesUnitTestsEasier, LawOfDemeterIsHardToUnderstand, LawOfDemeterIsTooRestrictive, LawOfDemeterAndCoupling.

link|flag
Did you read the whole article? I didn't understand the law correctly until I did. See in particular the "More formally..." section. – Kyralessa Jan 29 at 5:10
vote up 3 vote down

At some point in my career the pragmatic businessman in me started to have serious issues with the pragmatic programmer in me.

The sad truth is: If you are spending time worrying about The Law of Demeter, you are more than likely just wasting time/money. It's a good academic exercise, but only good in practice for a very limited subset of real world projects where attention to that level of design detail really matters.

Get it done, get it out the door, use it to generate revenue (monetary or otherwise). Any problems associated with the lack of adherence to The Law of Demeter can be filed under "problems I hope to have some day".

In short, almost always

link|flag
vote up 0 vote down

In the shop I work at, the Law of Demeter is not even discussed. It doesn't exist.

We have a kind of intermediate API called ObjectLayer (dumb name but its stuck) that hosts the Object-Relational mapping. It uses lots of public properties, etc. It serves as the Model part of MVC. Part of the controller is grafted into ObjectLayer because it is programmable by the end user and needs to work on an alternate interface.

The GUI objects have references to the objects in ObjectLayer. These are passed around, manipulated almost at will, etc by the controller code attached to the GUI.

The mini-programming language is the only truly stable part of the interface. ObjectLayer stabalized in its form almost by accident because it works really well until someone tries to change it (not that the code is bad but half the developers have difficulty writing truly reusable code).

link|flag
vote up 2 vote down

it's not ok. ever. That's why it's the Law of Demeter, not the suggestion of Demeter.

Violators will be prosecuted. ;-)

link|flag
sigh - no sense of humor! – Steven A. Lowe Jan 28 at 6:10
I feel your pain Steven. – gnovice Jan 29 at 4:30
lol - cant believe this was down voted. – Greg Dean Jan 29 at 4:54
vote up 2 vote down

A common example would be an object that exposes a collection that is mutable.

e.g.: customerObject.Orders.Add(order);

link|flag
Well, isn't that rather the archetypal example of wht LoD is justfied and your class lacks encapsulation? – Konrad Rudolph Jan 27 at 19:42
yes, it should be customerObject.AddOrder(order), otherwise you have to know that e.g. Orders is a collection with an Add method – Steven A. Lowe Jan 29 at 5:37
vote up 6 vote down

Whenever it makes your code more readable / maintainable. The Law of Demeter is (IMHO) somewhat schizophrenic. On the one hand, it is extremely detailed. On the other hand, it's only a very general rule because in many contexts it simply doesn't apply. Method chaining may actually be a good thing. Consider the following builder class application (notice that in this code, each method actually returns a different type so this code violates the Law of Demeter).

Date date = Date.year(2009).month(1).day(1);

First, what are the advantages of such a pattern over the following construct?

Date date = new Date(2009, 1, 1);
  • It improves readability,
  • It improves compile-time type safety, and
  • It allows Date very easily to be an immutable class which in itself has a lot of advantages.

Now, applying the Law of Demeter would yield code that is (again, IMHO) neither as readable nor as maintainable and simply offers not a single advantage over the terse form.

DateYearProxy y = Date.year(2009);
DateMonthProxy m = y.month(1);
Date date = m.day(1);

Discuss.

link|flag
1  
Your example isn't breaking the Law, is it? The Law is about calling methods down the hierarchy, not about chaining methods at one level of the hierarchy. That is, if month was a sub-class of Date, and day a sub-class of month within Date, then it would break the Law, but as it stands, it is fine. – Jonathan Leffler Jan 27 at 18:56
A C++ example: cout << "abc" << i << "def"; Not breaking the law - but is chaining methods. – Jonathan Leffler Jan 27 at 18:57
@Jonathan: I might have always understood the LoD wrong, then. But I don't think so. No definitions that I know restrict themselves to subtypes. See also the German Wikipedia article, it gives an example equivalent to mine. – Konrad Rudolph Jan 27 at 19:04
@Konrad: 300 characters ain't gonna be enough! I've gone to the LoD Wikipedia page, and is says "one dot". It also has a detailed list of 4 criteria, and I'd have thought that "one dot" was an over-simplification of the 4 criteria. It also says there is debate about the approach. – Jonathan Leffler Jan 28 at 22:36
@Jonathan: well, these four detailed criteria (of when to allow member access) implicitly exlude all instances of other types, not only of subtypes. – Konrad Rudolph Jan 28 at 23:03
show 8 more comments
vote up 8 vote down

It's okay to break any rule when you understand the consequences and are willing to either deal with the fallout or fix it. Usually that means living with it forever until you get fired or quit or refactor.

Usually people break rules without understanding higher goals or a more global context. That's when it is bad. Unfortunately, it takes discipline and experience to not break rules unnecessarily, and experience is not contagious.

MSN

link|flag
vote up 1 vote down

The only programming law I follow is KISS (Keep It Simple, Stupid or i prefer to call it, Keep it simply stupid).

At the end of the day what really matters is that: 1 - The software works. 2 - No bugs in it (or as minimal as possible) 3 - Your code is easy to read/understand and easy to modify.

So, I think that you might follow this or that convention, as long as it serves you, not the other way around.

link|flag
-1 I disagree with this because, if you follow the law of demeter, you make your design slightly more complex (remove public field, add a method). You reduce coupling but wind up with more code/indirection. – Outlaw Programmer Jan 27 at 18:34
If KISS is your only law, you might like this: thedailywtf.com/Articles/FrontAhead-Design.aspx/… :-) – DR Jan 27 at 19:06
+1 for the three points you mentioned in your second paragraph, and for your conclusion. – eJames Jan 27 at 20:32
1  
KISS = Keep It Surreal, Sergio! – Steven A. Lowe Jan 27 at 22:00
I also must state that i am a perfectionist. While my first priority is to keep my code simple and easy to maintain i also try to write the best code possible, as long as it makes sense. – Sergio Jan 29 at 10:11
show 1 more comment
vote up 5 vote down

This is a hard question. Basically the law of demeter is more a convention than a strict rule. It is true that following it allows for a better OOP and results in a more decoupled code. In my experience, it's common to break this rule when you're working with User Interfaces. If you're creating your system from scratch, it's easier to attend this rule. Remember that like design patterns, this rule is not an absolute.

link|flag

Your Answer

Get an OpenID
or

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