oop

Definition

Object Coupling

Object coupling describes the dependency of objects to one another. The strength of object coupling depends on:

  1. number of externally visible methods and variables (the interface)
  2. number of methods calls and variable accesses in other objects
  3. number of parameters of these methods

Object coupling should be weak.