1
vote
4answers
78 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
// …
0
votes
3answers
134 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, var …
1
vote
3answers
118 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 …
2
votes
3answers
217 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 …
1
vote
1answer
303 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_poin …
7
votes
11answers
810 views
When is it ok to break “the law of demeter”?
When is it ok to break "the law of demeter"? Any examples??
1
vote
3answers
209 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
3answers
249 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:
…
2
votes
4answers
211 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 perfo …
3
votes
5answers
191 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 MoveToFir …
4
votes
8answers
500 views
How to solve the violations of the Law of Demeter?
Me and a colleague 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 t …
3
votes
4answers
228 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 w …
16
votes
6answers
843 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, …
2
votes
1answer
90 views
DI and Composite Components - Design
Hi
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 componen …
