Insidious Tight Coupling
by Bil Lewis

Example 1:

(a)

class Person { 
   int age;
   public int getAge() {return age;}
}

(b) 

class Person { 
   int birthYear;
   public int getAge() {return thisYear - birthYear;}
}




1


