https://github.com/shubh2-0/coupling
This repository offers practical examples to understand different types of software coupling. Improve code organization and maintainability. Ideal for beginners seeking to enhance their understanding of software design principles and best practices. Explore the various coupling types and gain insights into achieving loosely coupled, modular systems
https://github.com/shubh2-0/coupling
coupling interface loose-coupling tight-coupling
Last synced: about 2 months ago
JSON representation
This repository offers practical examples to understand different types of software coupling. Improve code organization and maintainability. Ideal for beginners seeking to enhance their understanding of software design principles and best practices. Explore the various coupling types and gain insights into achieving loosely coupled, modular systems
- Host: GitHub
- URL: https://github.com/shubh2-0/coupling
- Owner: Shubh2-0
- Created: 2023-04-22T13:34:47.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-27T06:07:00.000Z (about 2 years ago)
- Last Synced: 2025-04-18T05:53:52.548Z (2 months ago)
- Topics: coupling, interface, loose-coupling, tight-coupling
- Language: Java
- Homepage:
- Size: 26.4 KB
- Stars: 10
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Coupling
Coupling refers to the usage of an object by another object. It can also be termed as collaboration. This dependency of one object on another object to get some task done can be classified into the following two types −
# Tight coupling
When an object creates the object to be used, then it is a tight coupling situation. As the main object creates the object itself, this object can not be changed from outside world easily marked it as tightly coupled objects.Example - Tight Coupling
Tester.java
```
public class Tester {
public static void main(String args[]) {
A a = new A();//a.display() will print A and B
//this implementation can not be changed dynamically
//being tight coupling
a.display();
}
}class A {
B b;
public A() {
//b is tightly coupled to A
b = new B();
}public void display() {
System.out.println("A");
b.display();
}
}class B {
public B(){}
public void display() {
System.out.println("B");
}
}
```
This will produce the following result −
```
OutputA
B```
# Loose coupling
When an object gets the object to be used from the outside, then it is a loose coupling situation. As the main object is merely using the object, this object can be changed from the outside world easily marked it as loosely coupled objects.Example - Loose Coupling
Tester.java```
import java.io.IOException;
public class Tester {
public static void main(String args[]) throws IOException {
Show b = new B();
Show c = new C();A a = new A(b);
//a.display() will print A and B
a.display();A a1 = new A(c);
//a.display() will print A and C
a1.display();
}
}interface Show {
public void display();
}class A {
Show s;
public A(Show s) {
//s is loosely coupled to A
this.s = s;
}public void display() {
System.out.println("A");
s.display();
}
}class B implements Show {
public B(){}
public void display() {
System.out.println("B");
}
}class C implements Show {
public C(){}
public void display() {
System.out.println("C");
}
}```
This will produce the following result −
```
OutputA
B
A
C```
# Using interfaces, we achieve the loose coupling by injecting the dependency.