Tagged Questions
The coupling 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 ...
12
votes
4answers
422 views
Composition vs. Inheritance: Is the need for mutual referencing a good hint?
If two classes both need to know about each other to do their job, i.e. class A must maintain a reference to class B and class B must maintain a reference to class A, is this generally a sign that ...
11
votes
3answers
768 views
Seperation of game- and rendering logic
What is the best way to seperate rendering code from the actually game engine/logic code? And is it even a good idea to seperate those?
Let's assume we have a game object called Knight. The Knight ...
11
votes
5answers
2k views
A python web application framework for tight DB/GUI coupling?
I'm a firm believer of the heretic thought of tight coupling between the backend and frontend: I want existing, implied knowledge about a backend to be automatically made use of when generating user ...
10
votes
7answers
345 views
Does this method violate SOLID or has code smell?
Does this give any code smell or violate SOLID principles?
public string Summarize()
{
IList<IDisplayable> displayableItems = getAllDisplayableItems();
StringBuilder summary = new ...
10
votes
6answers
317 views
Best practices for creating libraries that use .NET namespaces
Is it bad practice to write a library that defines an interface dependent on another library?
I know tight coupling is bad, but does this still apply when using .NET classes?
For example, in .NET, ...
10
votes
5answers
2k views
How should I inherit IDisposable?
Class names have been changed to protect the innocent.
If I have an interface named ISomeInterface. I also have classes that inherit the interface, FirstClass and SecondClass. FirstClass uses ...
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 ...
8
votes
10answers
252 views
Object-oriented Paradigm Question
Even though I've been programming for quite a while now, when it comes to coupling objects I always seem to bang my head against the wall so I'm wondering if anyone has any resources or golden rules I ...
7
votes
1answer
150 views
Is “too many dependencies” a code smell?
As a general rule, I like to use constructor-based dependency injection, but recently I was working on a class that depended on 4 other classes. Because long argument lists are hard to read, I ...
7
votes
10answers
629 views
Loose Coupling vs. Information Hiding and Ease of Change
I'm just reading Code Complete by Steve McConell and I'm thinking of an Example he gives in a section about loose coupling. It's about the interface of a method that calculates the number of holidays ...
7
votes
5answers
2k views
Coupling is too high - how to design this class better?
Running FxCop on my code, I get this warning:
Microsoft.Maintainability :
'FooBar.ctor is coupled with 99
different types from 9 different
namespaces. Rewrite or refactor the
method to ...
6
votes
1answer
72 views
Best option for managing module classes
My game base consists of a series of modules, organized as classes, that are created, updated and interact when needed.
A few examples could be: CWindowManager, CGraphicsManager, CPhysicsManager, and ...
6
votes
7answers
217 views
When classes want to couple
I am having an issue with 2 classes that were once nicely separated, but now they want to couple.
Without getting too much into the specifics of the problem, here it is:
I used to have a class ...
6
votes
2answers
438 views
How would you improve this simple class to be more loosely coupled?
As you can see below, in the constructor I'm instantiating a validation object so I can validate a user's email in a set method. Is this architecture best practice or flawed? Can I avoid making my ...
5
votes
3answers
163 views
5
votes
2answers
2k views
Model Using Modules in Rails Application
I have a model that requires loading external data from an auxiliary source. A number of web services exist that my model can fetch the data from (swappable), but I don't want to create code that will ...
5
votes
5answers
731 views
Alternatives to “using” keyword in C#?
I just finished watching an episode of Bob Martin at NDC where he said "using" directives in C# at the top of a page are bad because of the tight coupling they create/imply between components.
What ...
5
votes
9answers
498 views
Decoupling vs YAGNI
Do they contradict?
Decoupling is something great and quite hard to achieve. However in most of the applications we don't really need it, so I can design highly coupled applications and it almost ...
5
votes
4answers
377 views
Is Polymorphism worth an increase in coupling?
I'm writing a simplistic game to learn get some more C++ experience, and I have an idea where I feel polymorphism almost works, but doesn't. In this game, the Party moves fairly linearly through a ...
4
votes
3answers
52 views
Coupling between public functions
Lets say I have a function called do3()
In order for that function to work I need the functions do1() and do2() be executed.
However, do1() and do2() could also be needed for other stuff (maybe for ...
4
votes
5answers
238 views
auto-instantiated smart pointer
I am looking for a simple way to reduce header coupling in a C++ project, which comes mostly due to (overused) class composition which of course requires complete type. For example:
// header A
class ...
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
3answers
392 views
Cohesion and Decoupling
Can anyone tell me what are Cohesion and Decoupling? I found coupling but there is no Decoupling anywhere. I need to learn their meanings.
Any help will be appreciated. Thanks for replying.
4
votes
5answers
629 views
Detecting dependencies between namespaces in .NET
Are there any utilities that can examine a set of managed assemblies and tell you whether any of the types in one namespace depend on any in another? For example, say I have a MyApp.BusinessRules ...
3
votes
4answers
205 views
Design Question - OO food application
Say I have a number of usercontrols, each usercontrol inside a tabitem, inside a window.
For example, let say this is a food collection application. Then we have tabs Fruit, Vegetables and Snacks. ...
3
votes
5answers
457 views
Removing tightly coupled code
Forgive me if this is a dupe but I couldn't find anything that hit this exact question.
I'm working with a legacy application that is very tightly coupled. We are pulling out some of the major ...
3
votes
3answers
383 views
How to test anonymous classes?
I believe you must be familiar with this idiom, which is sort of java's excuse for closures
//In the "Resource Manager" class
public void process(Command cmd){
//Initialize
ExpensiveResource ...
3
votes
8answers
227 views
Class design
I have 2 classes for the game i am making,
gui class and the logic class, for a game of noughts and crosses. The GUI class has a method that uses an array of JButtons and returns them all with the ...
3
votes
4answers
432 views
Advice on designing loosely-coupled complete systems?
How does one design loosely-coupled systems which may often require data from each-other but don't necessarily belong in the same category?
For instance, lets take the old Pet-shop example one-step ...
2
votes
3answers
123 views
Integrating Bundles (Related Doctrine 2 Entities) in Symfony 2 and Coupling
As I understand, Bundles is to separate functionality. Suppose I have a UserBundle & a BlogBundle. Then my BlogBundle:Post will have an author field that references UserBundle:User. Doesn't that ...
2
votes
2answers
30 views
When is it OK to blur the abstraction between data and logic?
I mean referring to specific database rows by their ID, from code, or specifying a class name in the database. Example:
You have a database table called SocialNetwork. It's a lookup table. The ...
2
votes
1answer
223 views
Low coupling and tight cohesion
Of course it depends on the situation. But when a lower lever object or system communicate with an higher level system, should callbacks or events be preferred to keeping a pointer to higher level ...
2
votes
4answers
260 views
ORM - specific to SQL Server 2008+ for .NET
Is there an ORM tied to MS SQL 2008+, generating .NET code, which takes advantage of MS SQL specific features?
I'm specifically interested in 2 features:
(1) fetching a group of records by their ...
2
votes
4answers
120 views
Coupling in OO design
I have two objects. A Meeting object and an Action object (action raised in a meeting). An Action can also exist independent of a Meeting. I have two ways of linking the Action raised to the Meeting:
...
2
votes
1answer
153 views
Would you say .Net remoting relies on tight coupling?
Given that both the client and the server need to know everything about the object being remoted, firstly is this tight coupling, and secondly can .Net Remoting work in any other way?
2
votes
2answers
257 views
Coupling between controller and view
The litmus test for me for a good MVC implementation is how easy it is to swap out the view. I've always done this really badly due to being lazy but now I want to do it right. This is in C++ but it ...
2
votes
2answers
89 views
Does the concept of coupling two different items of data by storing them in a single variable have a name?
For example, if I have a 64-bit variable and store two 32-bit items of data in it, perhaps for the purposes of SIMD processing, is there a name to describe the logical coupling of those two items of ...
2
votes
6answers
695 views
How to refactor tightly coupled classes?
I'm trying to refactor a big tightly coupled application and trying to make it more maintainable and flexible.
I've got many unit tests, so I'm hoping to refactor step by step.
Which Design & ...
2
votes
7answers
515 views
Conceptual question: Loose Coupling
I am building a graphic board like project where i am facing a design issue.
Main Class is Board which is a canvas responsible for handling mouse events when drawing shapes. It also has context ...
2
votes
5answers
607 views
Timers, UI Frameworks and bad coupling - Any Ideas?
I've just written a small XBox 360 Wireless Controller managed interface that basically
wraps around the low-lever SlimDX wrapper library and provides a easy, managed API for the XBOX 360 controller.
...
1
vote
3answers
72 views
Public static data used throughout program
Code examples are C# but this is a general OO question.
I know according to OO rules, class coupling should be minimised and members should be kept private wherever possible, etc.
Consider this ...
1
vote
2answers
51 views
Benefits of not passing entities to view
I usually see people telling that you should not pass entities to your View. They say you should use a DTO/VO/ViewModel/AnyOtherThingYouWant instead, as using an entity would increase the coupling.
...
1
vote
1answer
143 views
Cohesion VS. Coupling
This question will treat software like a tree, where:
Each node in the tree represents some code unit (eg class \ method \ line etc.)
Node X is son of Node Y if in the source code X is set in Y
...
1
vote
1answer
71 views
Keeping Coupling Low While Adhering to DRY
The mantra "Keep high cohesion and low coupling" (or some variant) is frequently tossed around. However, I find that it frequently conflicts with "Don't repeat yourself."
For example, I think we can ...
1
vote
3answers
51 views
Optional component functionality vs SRP
I have a design issue that I encounter currently.
Let's say there is a hierarchy of components. Each of these component derives from an abstract Component type which looks something like this:
...
1
vote
3answers
373 views
Java 1.4: Cast primitive type to Object (Coupling vs Performance?)
This is actually related to a question I asked earlier, but I was left hanging on this detail. I'm restricted to Java 1.4 and I want to cast an int type to Object. Do I really need to use an Integer ...
1
vote
2answers
77 views
Flash / ActionScript - application design question
Could someone share the way how this should be designed:
Let's say I have some data model, which is built using Entries.
Basically, I have one abstract class Entry (or interface IEntry - that's not ...
1
vote
1answer
136 views
How Do I Avoid using Running Totals in My Code?
I am learning programing and software design and Java in school right now. The class that is getting me mixed up is Software Design. We are using Word to run simple VB code to do simple programs. ...
1
vote
3answers
149 views
Is it OK to exchange tuples between Python modules?
I have a small Python program consisting of very few modules (about 4 or so). The main module creates a list of tuples, thereby representing a number of records. These tuples are available to the ...