The Law of Demeter (LoD) or Principle of Least Knowledge is a design guideline for developing software, particularly object-oriented programs. In its general form, the LoD is a specific case of loose coupling.

learn more… | top users | synonyms

0
votes
3answers
59 views

Does the law of Demeter also apply to standard ActiveRecord object methods?

Say you have a class, Car, which has a Driver. If you wanted to access the driver's age, you would do: @car.driver_age Instead of @car.driver.age If you have delegated the driver's age attribute ...
3
votes
1answer
66 views

How do the Law of Demeter and composition with collections work together?

I have read nearly all of the questions tagged Law-of-Demeter. My specific question is not answered in any of these other questions, though it is very similar. Mainly my question is when you have an ...
0
votes
4answers
81 views

How to write read-only accessor functions in an aggregate root class?

Overall design: I have an aggregate class C that contains N member variables of type M_i, i = 1 ... N that each have a common write-only update() interface as well as class-specific read-only accessor ...
1
vote
1answer
53 views

Law of Demeter - The pragmatic programmer [closed]

I have some questions considering the exercises in "the pragmatic programmer". It says: 1. public void showBalance(BankAccount acct) { Money amt = acct. getBalance() ; printToScreen(amt ...
0
votes
2answers
102 views

Follow Law of Demeter when using collections?

Within Ruby on Rails (or any other language with a collection...) is it necessary to break Law of Demeter violations up when querying something simple like a count? class Survey has_one :kingdom ...
0
votes
2answers
95 views

Ideal code following the law of demeter and is testable (Dependency injection)?

I was reading through testable code that follows LoD, but got all messed up in my head. So please any guidance regarding this piece of code would be appreciated. public class HouseConfiguration { ...
4
votes
1answer
96 views

Is law of demeter aplied to properties too?

Law of demeter says that an object can't invoke a method M from an object B from an object A. But is it aplied to properties too? Example? public class B{ public bool IsValid(); } public class ...
1
vote
1answer
52 views

Domain Data Structures that hold Domain objects?

I have a position, and some entities that use position as it's identifier (geography, biome, and so on). If I want to get acess to them, I would need to retrieve each one by it's position, which would ...
6
votes
5answers
328 views

Law of Demeter - Data objects

I'm trying to follow the Law Of Demeter ( see http://en.wikipedia.org/wiki/Law_of_Demeter , http://misko.hevery.com/code-reviewers-guide/flaw-digging-into-collaborators/ ) as I can see the benefits, ...
1
vote
1answer
149 views

The Law of Demeter

I recently posted a question on stackoverflow where I did something to effect of @period_registration.period.event However, it was suggested that I do something like the following: def event ...
0
votes
0answers
28 views

Is using factory generated objects a violation of Law of Demeter?

class ObjectValidator { protected $validatorBuilder; ... public function validate() { foreach($this->properties as $propertyName => $propertyValue) { ...
1
vote
1answer
89 views

Do Navigation Properties in the Entity Framework Break The Law Of Demeter?

I believe this is a clear yes/no question I am asking, and regardless of implementation either it breaks the law or it does not. So my question is, do navigation properties created in the Entity ...
-1
votes
1answer
53 views

law of Demeter in ABAP

i want to detect and solve the violations of the Law of Demeter in ABAP. the focus is on the classe level. Dose anyone have some idea or articles? please reply best regards yinxiao
2
votes
3answers
134 views

Trying to understand the Law of Demeter as it applies to my code

I have a simple Store class that contains an Inventory. The Inventory contains a list of Items. In order to modify one of the Items in the Inventory, I'd have to write: Store store( /*parameters*/ ); ...
0
votes
1answer
106 views

Confused about the law of Demeter principle

To explain my problem, let me show you a example code with C#. interface IConstructorInfoSelector { //ConstructorInfo is System.Reflection.ConstructorInfo class. ConstructorInfo ...
4
votes
2answers
196 views

How to design class dependency trying to avoid Law of Demeter

Ok,I´ve searched and couldn´t find a suitable solution for my problem, I am redesigning a part of our point of sale system. Let´s suppose we have the following classes: TWorkShift = class Date: ...
4
votes
1answer
221 views

How to lazy load while obeying Law of Demeter?

I would like to obey Law of Demeter. But I would also like to lazy load some objects passed to constructors. How should I implement that? Pass a wrapper class? Pass a function pointer?
1
vote
1answer
142 views

Reconciling Law of Demeter with Models

I have a data model object User. My app also has some other data model objects, Fork and Options, for example. Users have forks and branches. My app has to run a lot of queries with some ...
6
votes
5answers
338 views

Tell, Don't Ask Principle and Password Expiration

Trying to keep with pragmatic programming principles, I'm trying to decide on how to handle user password changes based on the "Tell, Don't Ask" principle. I have a user object whose password expires ...
1
vote
2answers
174 views

Does the RSpec DSL violate the law of Demeter?

This may be a naive question, but does RSpec's testing DSL violate the law of Demeter? Here's an example of the RSpec DSL from http://rspec.info: bowling.score.should eq(0) From a Demeter ...
0
votes
1answer
124 views

How do I apply the Law of Demeter to this?

I have an admittedly ugly query to do, to find a particular role related to the current role. This line produces the correct result: @person_event_role.event_role.event.event_roles. ...
1
vote
2answers
104 views

Integrity of Law of Demeter preserved by using helper function (removed two dots)?

public House { WeatherStation station; public float getTemp() { //Law of Demeter has been violated here return station.getThermometer().getTemperature(); } } public House ...
1
vote
1answer
50 views

Does this method call violate the Law Of Demeter?

Say you have something like the following (sadly, I'm not allowed to post the original code): public void foo() { MyObject obj = getMyObject(); bar(obj); } public void bar(MyObject obj) { ...
1
vote
1answer
73 views

Is has_many => :through a violation of the Law of Demeter?

If it is, what's its defence? And if it isn't, why isn't it?
0
votes
1answer
107 views

Rails Associations, nilClass, try, and Law of Demeter

So I never know what to do here. Say you have Order, which has_one Member. If you call say, my_order.member.first_name where that associated member has been deleted, you can a nilClass error. I can ...
2
votes
1answer
151 views

Law of Demeter/single responsibility when events are involved

I am trying to reconcile the Law of Demeter for programming environments where events are involved - I tagged this javascript and obj-c (Cocoa's NSNotificationCenter) because both allow for events. ...
2
votes
3answers
167 views

Ruby / Rails: create a class method that operates on instances of its children?

In my app, Photo has_and_belong_to_many :land_uses I have this helper method in the Photo model: def land_use_list land_uses.map(&:name).join(', ') end This strikes me as a code smell ...
3
votes
3answers
193 views

Law of Demeter and OOP confusion

I've been doing some reading recently and have encountered the Law of Demeter. Now some of what I've read makes perfect sense e.g. the paperboy should never be able to rifle through a customers ...
2
votes
3answers
187 views

Is it appropriate to repeat data in models to satisfy using law of demeter in collections?

This is a contrived example, say I want to list the population of a country that a person has a friend in, here are two setups below. Would it be best to repeat data in the models? I've been told ...
2
votes
1answer
130 views

Where should my object construction code be while respecting the Law of Demeter?

I've been watching Google's clean code talks by Misko Hevery. These talks say: ask for dependencies in the constructor, so other programmers can see exactly what is needed up front, to instantiate an ...
4
votes
2answers
525 views

Law of Demeter - how far do you go?

I want to follow the Law of Demeter. As I am going through my code searching for the "two dots", I find myself asking if it's really worth setting up the delegation responsibilities in this type of ...
2
votes
2answers
95 views

Is this a violation of the Law of Demeter?

Is this a violation of the Law of Demeter? private void MoveEmptyCells() { IEnumerable<Cell> cells = this.internalGrid.GetAllEmptyCells(); foreach(Cell cell in cells) { ...
6
votes
1answer
339 views

Law of Demeter is very confusing because looks like I couldn't ever write methods that return objects

It feels like I've come to a dead end. If I understood it right then if I follow the Law of Demeter I can never make a method that returns an object and then client code makes calls to it. I'm just ...
0
votes
2answers
134 views

Keeping controllers clean

Let's say I have some logic that's being performed on the params hash passed into a controller action. I'd like to encapsulate the logic in some methods to keep the code understandable and to keep ...
3
votes
4answers
441 views

Does System.out.println violate the law of demeter?

Does System.out.println violate the law of demeter? If not, why?
5
votes
2answers
369 views

Does the Law of Demeter only apply to methods?

The LOD description I've seen (for example, Wikipedia, C2 Wiki) talk about not calling methods. To quote Wikipedia: The Law of Demeter for functions requires that a method M of an object O may ...
2
votes
1answer
241 views

Law of Demeter and DAO pattern

Here's a method in my Spring/Hibernate website's code that exemplifies my codebase: public class UserVoteServiceImpl implements UserVoteService { @Autowired UserRepository userRepository; ...
4
votes
4answers
178 views

Should I care that passing in a class representation of an XML settings file violates the law of demeter?

I'm using a tool to automatically generate a class representation of a hierarchically organized XML file. The XML file is a settings file my app need to be able to access (read-only). If I pass in ...
4
votes
1answer
231 views

Law of Demeter violation search tool?

Does anybody know of a tool that I could use with a C# application to find possible Law of Demeter violations? I know that it would give a lot of false positives, but I think it could still be useful. ...
5
votes
3answers
254 views

Law of Demeter and return values

According to the Law of Demeter, can you call methods on returned objects? E.g. <?php class O { public function m($http) { $response = $http->get('http://www.google.com'); ...
0
votes
1answer
48 views

Design question: Should the client both create the session and the socket?

I have three classes: Client Session Socket Both Session & Socket depeand on the Client to create both objects. A Session depeands on a Socket and no sockets are created without a session. ...
6
votes
5answers
348 views

How to modify code so that it adheres to the Law of Demeter

public class BigPerformance { public decimal Value { get; set; } } public class Performance { public BigPerformance BigPerf { get; set; } } public class Category { ...
4
votes
5answers
828 views

How does this code break the Law of Demeter?

The following code breaks the Law of Demeter: public class Student extends Person { private Grades grades; public Student() { } /** Must never return null; throw an appropriately named ...
4
votes
3answers
472 views

Wrappers/law of demeter seems to be an anti-pattern

I've been reading up on this "Law of Demeter" thing, and it (and pure "wrapper" classes in general) seem to generally be anti patterns. Consider an implementation class: class FluidSimulator { ...
4
votes
2answers
330 views

Exercise 26 of The Pragmatic Programmer

There is a code snippet presented in The Pragmatic Programmer on page 143 as: public class Colada { private Blender myBlender; private Vector myStuff; public Colada() { myBlender ...
1
vote
3answers
315 views

How can I keep separation of concerns when using a grid in the presentation layer (esp. .NET)?

In a three-tier model (presentation-business-data access layers), I can consistently keep my lower layers agnostic of the upper layers. For example my data access layer never knows how it is presented ...
5
votes
1answer
115 views

Granularization of models?

I'm developing a CMS largely based on Zend Framework components. Some of the database tables for this CMS are as followed: site | id | name | ------------- locale | languageCode | regionCode | ...
1
vote
4answers
216 views

Law of Demeter violation proves useful. Am I missing something?

I have some code like this in my application. It writes out some XML:- public void doStuff( Business b, XMLElement x) { Foo f = b.getFoo(); // Code doing stuff with f // b is not mentioned ...
0
votes
3answers
233 views

Help me refactor this loop

I am working on the redesign of an existing class. In this class about a 400-line while loop that does most of the work. The body of the loop is a minefield of if statements, variable assignments ...
4
votes
3answers
326 views

Law of Demeter and Class Constructors

The Law of Demeter does not prevent passing objects into class constructors. However, it does forbid getting that same object back later and calling a method on it to get a scalar value out. Instead, ...

1 2