Cohesion and Coupling deal with the quality of an OO design. Generally, good OO design should be loosely coupled and highly cohesive. Lot of the design principles, design patterns which have been created are based on the idea of “Loose coupling and high cohesion”.
The aim of the design should be to make the application:
- easier to develop
- easier to maintain
- easier to add new features
- less Fragile.
Coupling:
Coupling is the degree to which one class knows about another class. Let us consider two classes class A and class B. If class A knows class B through its interface only i.e it interacts with class B through its API then class A and class B are said to be loosely coupled.
If on the other hand class A apart from interacting class B by means of its interface also interacts through the non-interface stuff of class B then they are said to be tightly coupled. Suppose the developer changes the class B‘s non-interface part i.e non API stuff then in case of loose coupling class A does not breakdown but tight coupling causes the class A to break.
So its always a good OO design principle to use loose coupling between the classes i.e all interactions between the objects in OO system should use the APIs. An aspect of good class and API design is that classes should be well encapsulated.
Another related thoughts on Coupling.
Cohesion:
Cohesion is used to indicate the degree to which a class has a single, well-focused purpose. Coupling is all about how classes interact with each other, on the other hand cohesion focuses on how single class is designed. Higher the cohesiveness of the class, better is the OO design.
Benefits of Higher Cohesion:
- Highly cohesive classes are much easier to maintain and less frequently changed.
- Such classes are more usable than others as they are designed with a well-focused purpose.
Single Responsibility principle aims at creating highly cohesive classes.
Categories: Design
Very good summary of cohesion and coupling
LikeLike
Gareth,
Thanks for the feedback!
LikeLike
Very good explaination of cohesion and coupling
LikeLike
Nice article. Thank you.
LikeLike
Thanks for giving more and understandable about coupling and cohesion…
LikeLike
Thanks for reading the article!
LikeLike
Many thanks for the clear explanation of both principles.
LikeLike
well explained !
LikeLike
Very Special Definitions of both never find on other links, Thanks a lot !
LikeLike
Nicely explained 🙂
LikeLike
hi thanks for explaining this 2 principles very clearly..and i feel very easy to understand
LikeLike
txxxxxxxxx a lot a very good explanation
LikeLike
Very well explained!! 🙂
LikeLike
very helpful explanation…. 🙂
LikeLike
Found this on stack overflow. Good job sanaulla.
LikeLike
Jagat, Thanks a lot.
LikeLike
Nice, simple and straight explanation.
Good article!
LikeLike
Sorry, I do not understand. You did not include a simple example which clearly shows the concept. I don’t think that this answer will satisfy any knowledgeable and experienced interviewer.
LikeLike
Copy paste for K&B, Do some real work then cheap ctrl+c ctrl+v
LikeLike
I dont think its a Ctrl+C and Ctrl+V. Its my understanding of the concept which I have written down. There might be a similarity in terms used and the similarity ends there.
LikeLike
hi brother mohamed
i want to know how i can measure the coupling and cohesion for set of software variants for example 10 products
LikeLike
Nice post.Really it has a value .
Thank you sir.
LikeLike
nice explanation
LikeLike
Thanks for taking time to read!
LikeLike
Mohamed, the explanation is very clear.. Thank you.. 🙂
LikeLike
nice ….very wonder full……i and this concept loosely coupled each other
LikeLike
Both concepts are difficult but due to this article i understand thes concepts.thankssss
LikeLike
Best article found on the web about cohesion and coupling
LikeLike
Hi,
This is a very good article.
You may also check http://www.agile-code.com/blog/cohesion-vs-coupling-separate-concerns/
Cheers
LikeLike
Hi.. good article but whats missing is . try and implement it with some code and than explain so that it will be easy for any1 to understand these concepts..
LikeLike
was easy and quick to grasp… just need to have some code examples..
LikeLike
Thanks for a good explanation. Became simple to understand. Coupling (Married couples will be tightly coupled (have issues) if they know non-interface stuff)
LikeLike
easy explanations.
LikeLike
very straight forward thank you very much
LikeLike
Awesome explanation. Thanks a lot Mr. Sanaulla.
LikeLike
please explain it with more examples……….
LikeLike
Really nice Article.
LikeLike
Nice Article! I have not came across a this kind of simple and clear explanation till now.
Kudos to Author!
LikeLike
Glad that it was helpful!!
LikeLike
Low cohesion is BAD because a class is trying to solve everything and not just its specific purposes . Many thanks for sharing this information.
LikeLiked by 1 person