vote up 0 vote down star

In his definition 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?

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"?

flag
I hope you do realize you're question is so vague that no sober person will ever answer it. – audris Feb 10 at 16:43
Hm, do you have any suggestions as to how I could be more specific? I'm looking for ties between what Smalltalkers refer to "late binding of all things" and "modern" IoC patterns... – Andrey Fedorov Feb 10 at 17:39

1 Answer

vote up 1 vote down check

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.

That said, it could be argued that all these methods/patterns/philosophies share the same fundamental principle: to lower the cost of change.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.