What is the relationship between "late binding" and "inversion of control"? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T10:12:06Z http://stackoverflow.com/feeds/question/533090 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/533090/what-is-the-relationship-between-late-binding-and-inversion-of-control 0 What is the relationship between "late binding" and "inversion of control"? Andrey Fedorov 2009-02-10T16:35:44Z 2009-02-10T18:33:18Z <p>In <a href="http://userpage.fu-berlin.de/~ram/pub/pub_jf47ht81Ht/doc_kay_oop_en" rel="nofollow">his definition</a> of OOP, Alan Kay points out he supports "the extreme late-binding of all things". Does his interest in late-binding share the same motivation as people's interest in IoC?</p> <p>In particular, would it be correct to say that both are motivated by the concept "specify as little as possible, and leave implementation details to be filled in later"?</p> http://stackoverflow.com/questions/533090/what-is-the-relationship-between-late-binding-and-inversion-of-control/533557#533557 1 Answer by Jim Arnold for What is the relationship between "late binding" and "inversion of control"? Jim Arnold 2009-02-10T18:33:18Z 2009-02-10T18:33:18Z <p>It depends what you mean by inversion of control - the term has been overloaded to include dependency injection, but they are really different concepts. IoC originally described a method of controlling program flow, whereas DI is specifically concerned with reducing coupling between types. </p> <p>That said, it could be argued that all these methods/patterns/philosophies share the same fundamental principle: to lower the cost of change.</p>