alt.hn

6/27/2026 at 2:49:05 PM

Dr. Alan Kay on the meaning of "object-oriented programming" (2003)

https://notes.shixiangxi.com/en/docs/appendix/alan-kay-on-oop/

by sxx0

6/28/2026 at 8:25:28 AM

That's the Smalltalk school of OOP. There is also the Simula school. It is kind of unfortunate that they use the same name.

by ahartmetz

6/28/2026 at 8:36:28 AM

> OOP to me means only messaging, local retention and protection and hiding of state-process, and extreme late-binding of all things.

How does Simula differ here?

by mycall

6/28/2026 at 10:57:36 AM

AFAIU, Simula focused more on types and inheritance and less on late-binding, in particular not of "all things".

Alan Kay's distaste for (static) types is just his opinion and an original contribution of IMO rather dubious value.

After the dust has settled, it seems like the most valuable parts of OOP are private data, convenience (no need to repeat the class name in a method call), good fit for some domains, and interfaces.

by ahartmetz

6/28/2026 at 1:10:31 PM

private data, convenience

Which can be easily achieved without OOP.

by jqpabc123

6/28/2026 at 12:20:58 PM

I thought of objects being like biological cells and/or individual computers on a network, only able to communicate with messages

It was originablly conceived as a simulation of a distributed system.

Distributed systems can be useful but does anyone really believe that they are simpler or easier to develop and maintain?

The amazing part to me is that so many were trained and convinced to accept that adopting this simulation could make all programming easier or somehow "better". As if adding complexity would magically lead to simplification.

by jqpabc123