开发者

What's the difference of ANSI Smalltalk and Smalltalk-80?

开发者 https://www.devze.com 2023-03-13 04:00 出处:网络
I discovered there is no mentioning about thisContext in ANSI Smalltalk specification (draft). I assumed ANSI Smalltalk as standardized Smalltalk-80, so I can\'t understand 开发者_JAVA技巧why it\'s n

I discovered there is no mentioning about thisContext in ANSI Smalltalk specification (draft).

I assumed ANSI Smalltalk as standardized Smalltalk-80, so I can't understand 开发者_JAVA技巧why it's not there. What's the difference of them?


Smalltalk-80 refers to a very specific thing: the version of Smalltalk that was in use at Xerox Parc back in 1980. While there are many Smalltalks that are based, either in a direct sense (Squeak and Pharo) or an ideological sense (Ambrai Smalltalk and GNU Smalltalk), on that environment, there are no Smalltalks around today that actually fully adhere to the language and virtual machine described in that book. Even Squeak, which is probably the closest ideologically, has some major deviations: Squeak has closures, Smalltalk-80 does not; Squeak has Unicode, Smalltalk-80 does not; Squeak's VM supports and uses named primitives, Smalltalk-80 does not; Squeak support some bytecodes that Smalltalk-80 does not; and so on.

ANSI Smalltalk, like ANSI Common Lisp, attempted to define a standard that incorporate a common subset of Smalltalk functionality across the major Smalltalk implementations. Since the ANSI standard was written in 1998, it had to take into account far more than just the original implementation. In particular, some at-the-time major Smalltalks, such as Smalltalk MT and VisualAge Smalltalk, lacked continuations entirely (and a thisContext variable as a result). That feature is therefore absent from the ANSI standard.

In practice, these differences are somewhat academic. You're worried about thisContext, but GNU Smalltalk has a radically different syntax, VisualWorks has namespaces, Squeak has Traits, Pharo lacks MVC...there are simply more pressing differences. Smalltalk-80 and the ANSI Smalltalk draft are both more guidelines than anything else at this point in Smalltalk's life.

0

精彩评论

暂无评论...
验证码 换一张
取 消