The cohesion tag has no wiki summary.
0
votes
0answers
32 views
Lack of Cohesion of Methods (LCOM)
How can you calculate/identify the Java class with the highest lack of cohesion and is there any unjust penalty imposed to the result?
0
votes
2answers
26 views
Share important instances without coupling
Let's say you're writing a "bigger" application and you want to log certain errors in your classes. Now almost every class needs access to a Logger.
One simple solution would be the following (PHP, ...
1
vote
0answers
179 views
Open Source or Freeware C Code Metrics tools?
I have been trying to find a tool (hopefully for MAC OS X but I don't mind migrating) -- that works -- for those dimensions but I had no luck. Maultech mention some, and so does this page but I was ...
4
votes
2answers
162 views
Turning sequential cohesion into functional cohesion?
As described on this website,
A module with (only) procedural cohesion is one supporting different and possibly unrelated activities, in which control passes from one activity to the next. ...
1
vote
5answers
144 views
Tool to identify cohesive blocks of (JAVA) code
I am wondering if there is a tool that can identify cohesive blocks of code within JAVA source code.
For example if I had a long method that I would like to extract another method from - is there any ...
1
vote
2answers
59 views
Persisting Objects while Still Preserving Loose Coupling
I working on a project in a microcontroller and I need to persist some settings. Pretend this is an iPod. I need to save various settings like CurrentSongPlaying, CurrentVolume, etc. so that when I ...
1
vote
1answer
85 views
Where to put ajax scripts for forms (what controller) in mvc?
This is my situation:
I have a single view (lets call it view V) with a formform with multiple combo box for selecting some parameters.
I want to load the options of those combo box via AJAX calls ...
0
votes
2answers
125 views
Difference between code tangling and cohesion?
In relation with crosscutting concerns and aspect oriented programming, you often read about code tangling. This article 1 desciribes code tangling as:
Modules in a software system may ...
0
votes
0answers
22 views
Must cohesion also be applied within a method of a class?
High cohesion class has a set of closely related responsibilities.
a) But should we also make sure that each method in such class performs just a single task or is it ok for a method to perform ...
4
votes
2answers
170 views
Is “high cohesion” a synonym for the “Single Responsibility Principle?”
Is high cohesion a synonym for the Single Responsibility Principle? If not, how are they different?
0
votes
1answer
264 views
How does High Cohesion help us reduce Coupling?
Assume methods M1 and M2 have strongly related responsibilities
First example:
If
• M1 and M2 are defined within class A ( thus class A is highly cohesive )
• class B uses A.M1 and class C ...
11
votes
9answers
4k views
What is high cohesion and how to use it / make it?
I'm learning computer programming and at several places I've stumbled upon the concept of cohesion and I understand that it is desirable for a software to have "high cohesion" but what does it mean? ...
3
votes
5answers
127 views
Handling large classes
I've recently begun coding in Java in the past few months. I have a Matrix class that's becoming much too bloated with a lot of methods. I also have a SquareMatrix class that extends Matrix, and ...
0
votes
3answers
131 views
Reusing PHP function for accessing an array item tag from XML document
I have created a website that contains that uses XML to drive some of its contents, for example, the current exchange rates as shown below.
The website compares three exchange rates and I currently ...
0
votes
1answer
97 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 = ...
1
vote
2answers
109 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
200 views
Tools for measuting coupling and cohesion [closed]
Do you know of any tools that help us measure coupling and cohesion in the system?
1
vote
1answer
634 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
...
2
votes
1answer
119 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 ...
0
votes
1answer
105 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 ?
1
vote
4answers
603 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 ...
0
votes
2answers
225 views
Abstraction in business logic classes
When you call a method from a library you expect that it does exactly what its name implies it will do.
Connection c = driver.getConnection();
to give back a connection
to report an error if it ...
1
vote
3answers
310 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?
0
votes
1answer
112 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 ...
1
vote
3answers
673 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 ...
7
votes
1answer
310 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 ...
2
votes
3answers
248 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 ...
0
votes
2answers
844 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. ...
2
votes
1answer
215 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
63 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 ...
2
votes
3answers
171 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()
...
4
votes
4answers
126 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 ...
1
vote
1answer
154 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 ...
29
votes
13answers
805 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 ...
1
vote
1answer
157 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
246 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 ...
7
votes
4answers
3k 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.
0
votes
3answers
309 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 ...
2
votes
4answers
979 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 ...
3
votes
8answers
288 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
1k 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.
39
votes
6answers
3k 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 ...
