TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

The Early History of Smalltalk (1993)

47 pointsby throwaway344almost 11 years ago

4 comments

rdtscalmost 11 years ago
&gt; The mental image was one of separate computers sending requests to other computers that had to be accepted and understood by the receivers before anything could happen. In today&#x27;s terms every object would be a server offering services whose deployment and discretion depended entirely on the server&#x27;s notion of relationship with the server.<p>1993 called and wants its micro-services. That is great. At least it seems like he is describing Go&#x27;s channels, Rust&#x27;s tasks, and most of all Erlang&#x27;s processes.<p>It is interesting, perhaps it is a reflection on how some of these concepts are abstract that anything can be read into it, but it seems that the initial design and motivation behind OO has been perverted by C++ and Java.<p>I started with C++ and Java in college. To me OO was inheritance, composition, and polymorphism, and so on. Years later, when distributed and scalable computing is talked about other languages and platforms seems more OO than the classic OO.<p>And finally one more excerpt:<p>&gt;<p>---<p><pre><code> 1. Everything is an object 2. Objects communicate by sending and receiving messages (in terms of objects) Objects have their own memory (in terms of objects) 3. Every object is an instance of a class (which must be an object) The class holds the shared behavior for its instances (in the form of objects in a program list) </code></pre> ---<p>Pretty funny. Replace &#x27;object&#x27; with &#x27;process&#x27; and you have Erlang, the last language you&#x27;d call OO : 1) everything is a process 2) processes sending messages to each other. Each process has an isolated heap (won memory). 3) Functions in modules hold the shared behavior of many possible process instances spawn from it.
评论 #7926946 未加载
评论 #7927480 未加载
评论 #7927157 未加载
pholbrookalmost 11 years ago
Glad to see someone posted this again. This is without a doubt one of the best papers I&#x27;ve ever read. Drives home that Alan Kay is truly brilliant.
Glenchalmost 11 years ago
Here&#x27;s a better one, with a github for corrections: <a href="http://worrydream.com/EarlyHistoryOfSmalltalk/" rel="nofollow">http:&#x2F;&#x2F;worrydream.com&#x2F;EarlyHistoryOfSmalltalk&#x2F;</a>
评论 #7926612 未加载
quinkalmost 11 years ago
I want to enjoy reading this as much as it deserves to, but there are so many typos ;_;<p>Nevertheless, I shall persist and so should you.
评论 #7926289 未加载