Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
13answers
756 views

Is it worth trying to write tests for the most tightly coupled site in the world?

Imagine that 90% of your job is merely to triage issues on a very massive, very broken website. Imagine that this website is written in the most tightly coupled, least cohesive PHP code you've ever ...
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 ...
7
votes
1answer
151 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 ...
4
votes
4answers
110 views

Help with program design

I'm currently creating a simple console-based game in which the player can move between different rooms, pick up and use items, and eat food. In the game's current state that's about it. What I need ...
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.
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
5answers
765 views

Good definition for “coherence”

I'm trying to tell someone his code is not "coherent" in the sense that it serves multiple purposes. I don't think I can explain it very well, so I'm looking for a good reference and/or definition.
2
votes
3answers
161 views

Which is “better” practice? Passing object references or object method references in Python

I'm writing a small piece of code in Python and am curious what other people think of this. I have a few classes, each with a few methods, and am trying to determine what is "better": to pass objects ...
2
votes
4answers
705 views

What are techniques for increasing cohesion while maintaining loose coupling?

Loose coupling, high cohesion for a maintainable application This is the battle-cry that I hear over and over. There is plenty of advice on how to loosely couple components. Base on ...
1
vote
2answers
49 views

Do I need to make Custom Events in this situation?

For hobby I'm making a game. The game has a monster chasing the human (Pacman-like). When the Pacman is stuck, can eat the human or does some move; an event should be raised. This is because my ...
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
4answers
185 views

Improving Cohesion and Coupling of Classes

I am given this set of code and need to suggest ways to improve the code's cohesion and coupling of the classes. But I thought these classes are quite well de-coupled since it looks like they are ...
1
vote
3answers
142 views

Method Cohesion

I have persistent objects that are saved to the DB (insert, update, delete). Is it better to combine this logic in a single method - Save or have 3 separate methods for cohesion?
1
vote
3answers
282 views

Communication cohesion

There are coupling and cohesion for modules. OK. There are functional and communication cohesion. Functional cohesion is grouping by functionality. OK. Communication cohesion is grouping by ...
1
vote
1answer
162 views

SRP: Why use instance field values instead of parameters?

I've just read SRP, as easy as 123…, and all of it resonates with me except one paragraph, in a section named "Cohesion" (I've claimed before to "get" Cohesion, but this talk of parameters vs instance ...
1
vote
1answer
44 views

What is the most cohesive location to utilize a logger?

I've written a task manager program using Java, and made a single UI implementation for the moment in swing. The program has 3 layers at the moment. A presentation layer that interacts with the domain ...
1
vote
3answers
110 views

Does an object capapble to save itself into DataBase spoils the Cohesion of the class?

Speaking in terms of object oriented design, do you think to give a functionality of saving itself into Data-base to an object spoils the COHESION of the class? Imagine: Product p = new Product() ...
1
vote
1answer
112 views

High Cohesion and Concurrency - Are they conflicting interests?

I was reading Robert Martin's Clean Code and in that he mentions about the code being highly cohesive: Classes should have a small number of instance variables. Each of the methods of a class ...
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. ...
0
votes
1answer
30 views

Increase cohesion by reusing a PHP function for multiple RSS feeds

My homepage contains weather for three cities around the world as displayed in the image In the home page I declare 3 variables storing the RSS URL for each city $newYorkWeatherSource = ...
0
votes
1answer
19 views

Tools for measuting coupling and cohesion [closed]

Do you know of any tools that help us measure coupling and cohesion in the system?
0
votes
1answer
44 views

does the DAO pattern spoils cohesion /SRP?

let's use as example: class AccountDAO { create(){..} read(){..} update(){..} delete() {..} } how many responsabilities are there? 1 or 4 ?
0
votes
2answers
109 views

Abstraction in business logic classes

When you call a method from a library you expect that it does exactly what it's name implies it will do. Connection c = driver.getConnection(); to give back a connection to report an error if it ...
0
votes
1answer
63 views

Coupling of objects

Assuming I have methods of doA(), doB() and doC() of classes A,B and C respectively. Than unless I am wrong, doA() method should belong to class A. It must be executed from Class A. If a method ...
0
votes
2answers
352 views

Coupling/Cohesion

Whilst there are many good examples on this forum that contain examples of coupling and cohesion, I am struggling to apply it to my code fully. I can identify parts in my code that may need changing. ...
0
votes
1answer
151 views

How to make a design “loose coupling”?

I'm making a simple 3D CAD software. in the class diagram, many objects need to distinguish with others by (x,y,z). I create a class so-called "Position", but the problem is it looks highly-coupling ...
0
votes
3answers
261 views

Is this a violation of the single responsiblity principle?

I have the following method and interface: public object ProcessRules(List<IRule> rules) { foreach(IRule rule in rules) { if(EvaluateExpression(rule.Exp) == true) return ...