Tagged Questions
The law-of-demeter tag has no wiki summary.
26
votes
6answers
2k views
Coupling, Cohesion and the Law of Demeter
The Law of Demeter indicates that you should only speak to objects that you know about directly. That is, do not perform method chaining to talk to other objects. When you do so, you are ...
10
votes
8answers
1k views
How to solve the violations of the Law of Demeter?
A colleague and I designed a system for our customer, and in our opinion we created a nice clean design. But I'm having problems with some coupling we've introduced. I could try to create an example ...
9
votes
11answers
1k views
When is it ok to break “the law of demeter”?
When is it ok to break "the law of demeter"? Any examples??
6
votes
5answers
281 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
{
...
5
votes
1answer
91 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 |
...
4
votes
1answer
184 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 ...
4
votes
2answers
205 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 ...
4
votes
4answers
168 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
167 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. ...
4
votes
3answers
181 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');
...
4
votes
5answers
453 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
295 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
4answers
363 views
Law of Demeter vs. REST
The Law of Demeter (really should be the suggestion of Demeter) says that you shouldn't "reach through" an object to get at their child objects. If you, as a client, need to perform some non-trivial ...
4
votes
5answers
284 views
Law of demeter or return the whole vector
Which one is better:
public:
const vector<int> & GetPointsVector();
private:
vector<int> PointsVector;
Or:
public:
int GetCurrentPoint();
void MoveToFirstPoint();
void ...
3
votes
3answers
97 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 ...
3
votes
2answers
173 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 ...
3
votes
4answers
291 views
Does System.out.println violate the law of demeter?
Does System.out.println violate the law of demeter?
If not, why?
3
votes
2answers
261 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 ...
3
votes
3answers
241 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, ...
3
votes
3answers
370 views
Does Passive View breaks the Law of Demeter?
I'm trying to understand how to use Passive View correctly. It seems to me that every examples I look at on Passive View breaks the Law of Demeter :
//In the presenter code
myview.mytextfield.text = ...
3
votes
4answers
407 views
How to restructure this code hierarchy (relating to the Law of Demeter)
I've got a game engine where I'm splitting off the physics simulation from the game object functionality. So I've got a pure virtual class for a physical body
class Body
from which I'll be ...
2
votes
1answer
65 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
71 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 ...
2
votes
3answers
87 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
68 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 ...
2
votes
0answers
54 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)
{
...
2
votes
1answer
125 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;
...
2
votes
3answers
738 views
Law Of Demeter on Factory Pattern and Dependency Injection
hello all
I have a question regarding dependency injection.
say i want to create a class
call it, WebGetTask
WebGetTask would need a dependency to HttpService
bad code 1
Code:
private HttpService ...
2
votes
1answer
119 views
DI and Composite Components - Design
I'm designing a new component to a system, trying to follow the various guidelines on DI so we get payback in terms of isolation, mocking etc.
So I have the following components (illustrated as an ...
1
vote
2answers
36 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
31 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
36 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?
1
vote
3answers
232 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 ...
1
vote
4answers
194 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 ...
1
vote
1answer
475 views
Law of Demeter doesn't make sense in my case
Looking on this answer I understand that you should not copy private pointers using friendship in C++ like I did in my program:
class bar;
class foo
{
private:
some_smart_pointer<int> ...
1
vote
3answers
297 views
What is the name of this programming rule?
There is a programming "rule" that says that a method should instead of asking for 'x' when it needs to know 'x.y.z', ask directly for 'z'. I just can't remember the name.
0
votes
1answer
41 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.
...
0
votes
1answer
42 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 ...
0
votes
4answers
86 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 ...
0
votes
1answer
43 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.
...
0
votes
3answers
179 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 ...