- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Tight coupling is when a group of classes are highly dependent on one another.
class C {
A a;
C(B b) {
a = b;
}
}
Interface A {
}
class B implements A {
}
在我的代码中,我通过类 B 的引用而不是通过父接口(interface) A 接受类的对象。
我的代码是松散耦合还是紧密耦合?
Loose coupling is achieved by means of a design that promotes single-responsibility and separation of concerns.
使用父类或接口(interface)的引用使代码更灵活地采用任何子类的对象,但它如何促进单一职责。
松散耦合是否可以通过任何其他方式来实现,而不是使用父类引用变量,在任何情况下都不是专门在我的代码中实现的?
最佳答案
这感觉像是家庭作业,但这是我的答案。
代码是紧密耦合的,因为 C
的构造函数取决于B
而不是接口(interface)A
。如果你想解耦C
来自B
,您将接受 A
的实例而不是B
.
松耦合代码
class C {
A a;
C(A a) {
this.a = a;
}
}
关于java - ls 松散耦合可以通过任何其他方式来实现,而不是使用父类引用变量,通常不是专门在我的代码中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30213706/
我有一个带有模板函数的基类,该函数具有通用模板类型和专用版本。 #ifndef BASE_CLASS #define BASE_CLASS #include using namespace std;
我有这个 3D vector 模板 template class Vec3TYPE{ public: union{ struct{ TYPE x,y,z; }; struct{ TY
我是一名优秀的程序员,十分优秀!