What does 'low in coupling and high in cohesion' mean

前端 未结 14 557
粉色の甜心
粉色の甜心 2020-11-30 16:18

I have problems understanding the statement low in coupling and high in cohesion. I have googled and read a lot about this, but still finding it hard to underst

14条回答
  •  天命终不由人
    2020-11-30 16:56

    Low Coupling and High Cohesion is a recommended phenomenon.

    Coupling means to what extent various modules are interdependent and how the other modules are affected on changing some/considerable functionality of a module. Low coupling is emphasized as the dependency has to be maintained low so that very least/negligible changes are made to other modules.

提交回复
热议问题