Introduction to OOP Chapter 23: Object Interconnections : next previous audio real text

Parameter Coupling

Parameter coupling occurs when one object knows of another only through being passed as a parameter or a return value.

Another very weak (and therefore good) type of coupling.

class MyClass {
public:
	void doSomething (Set aSet) {
		...
	}
}
Intro OOP, Chapter 23, Slide 11