slovodefinícia
smalltalk
(encz)
smalltalk,pokec n: Zdeněk Brož
smalltalk
(encz)
smalltalk,tlachání n: Zdeněk Brož
smalltalk
(foldoc)
Smalltalk

The pioneering object-oriented programming system
developed in 1972 by the Software Concepts Group, led by {Alan
Kay}, at Xerox PARC between 1971 and 1983. It includes a
language, a programming environment, and an extensive object
library.

Smalltalk took the concepts of class and message from
Simula-67 and made them all-pervasive. Innovations included
the bitmap display, windowing system, and use of a mouse.

The syntax is very simple. The fundamental construction is
to send a message to an object:

object message

or with extra parameters

object message: param1 secondArg: param2 .. nthArg: paramN

where "secondArg:" etc. are considered to be part of the
message name.

Five pseudo-variables are defined: "self", "super", "nil",
"true", "false". "self" is the receiver of the current
message. "super" is used to delegate processing of a message
to the superclass of the receiver. "nil" is a reference to
"nothing" (an instance of UndefinedObject). All variables
initially contain a reference to nil. "true" and "false" are
Booleans.

In Smalltalk, any message can be sent to any object. The
recipient object itself decides (based on the message name,
also called the "message selector") how to respond to the
message. Because of that, the multiple inheritance system
included in the early versions of Smalltalk-80 appeared to be
unused in practice. All modern implementations have single
inheritance, so each class can have at most one superclass.

Early implementations were interpreted but all modern ones
use dynamic translation (JIT).

Early versions were Smalltalk-72, Smalltalk-74, Smalltalk-76
(inheritance taken from Simula, and concurrency), and
Smalltalk-78, Smalltalk-80. Other versions include {Little
Smalltalk}, Smalltalk/V, Kamin's interpreters. Current
versions are VisualWorks, Squeak, VisualAge, {Dolphin
Smalltalk}, Object Studio, GNU Smalltalk.

See also: International Smalltalk Association.

UIUC Smalltalk archive (http://st-www.cs.uiuc.edu/).
FAQ (http://XCF.Berkeley.EDU/pub/misc/smalltalk/FAQ/).

Usenet newsgroup: news:comp.lang.smalltalk.

["The Smalltalk-76 Programming System Design and
Implementation", D.H. Ingalls, 5th POPL, ACM 1978, pp. 9-16].

(2001-09-11)
podobné slovodefinícia
smalltalk
(encz)
smalltalk,pokec n: Zdeněk Brožsmalltalk,tlachání n: Zdeněk Brož
concurrentsmalltalk
(foldoc)
ConcurrentSmalltalk

A concurrent variant of Smalltalk.

["Concurrent Programming in ConcurrentSmalltalk", Y. Yokote et
al in Object-Oriented Concurrent Programming, A. Yonezawa et
al eds, MIT Press 1987, pp. 129-158].

(1994-11-30)
distributed smalltalk
(foldoc)
Distributed Smalltalk

["The Design and Implementation of Distributed Smalltalk",
J. Bennett, SIGPLAN Notices 22(12):318-330 (Dec 1980)].

(1994-12-02)
gnu smalltalk
(foldoc)
GNU Smalltalk

A GNU version of Smalltalk, by Steven Byrne
.

Version 1.1.1,

FTP from your nearest GNU archive site.

msgGUI is a graphical user interface library for GNU
Smalltalk.

(1991-09-15)
international smalltalk association
(foldoc)
International Smalltalk Association

(ISA) A user group which published newsletters on
Smalltalk-related issues, technical and general information.
Its goal was to champion Smalltalk and its uses. It was
disbanded around 1991.

(1995-02-16)
little smalltalk
(foldoc)
Little Smalltalk

A line-oriented near-subset of Smalltalk-80 written in C
by Tim Budd . Version 3 runs on Unix,
IBM PC, Atari and VMS.

(ftp://cs.orst.edu/pub/budd/).

["A Little Smalltalk", Timothy Budd, A-W 1987].
smalltalk
(foldoc)
Smalltalk

The pioneering object-oriented programming system
developed in 1972 by the Software Concepts Group, led by {Alan
Kay}, at Xerox PARC between 1971 and 1983. It includes a
language, a programming environment, and an extensive object
library.

Smalltalk took the concepts of class and message from
Simula-67 and made them all-pervasive. Innovations included
the bitmap display, windowing system, and use of a mouse.

The syntax is very simple. The fundamental construction is
to send a message to an object:

object message

or with extra parameters

object message: param1 secondArg: param2 .. nthArg: paramN

where "secondArg:" etc. are considered to be part of the
message name.

Five pseudo-variables are defined: "self", "super", "nil",
"true", "false". "self" is the receiver of the current
message. "super" is used to delegate processing of a message
to the superclass of the receiver. "nil" is a reference to
"nothing" (an instance of UndefinedObject). All variables
initially contain a reference to nil. "true" and "false" are
Booleans.

In Smalltalk, any message can be sent to any object. The
recipient object itself decides (based on the message name,
also called the "message selector") how to respond to the
message. Because of that, the multiple inheritance system
included in the early versions of Smalltalk-80 appeared to be
unused in practice. All modern implementations have single
inheritance, so each class can have at most one superclass.

Early implementations were interpreted but all modern ones
use dynamic translation (JIT).

Early versions were Smalltalk-72, Smalltalk-74, Smalltalk-76
(inheritance taken from Simula, and concurrency), and
Smalltalk-78, Smalltalk-80. Other versions include {Little
Smalltalk}, Smalltalk/V, Kamin's interpreters. Current
versions are VisualWorks, Squeak, VisualAge, {Dolphin
Smalltalk}, Object Studio, GNU Smalltalk.

See also: International Smalltalk Association.

UIUC Smalltalk archive (http://st-www.cs.uiuc.edu/).
FAQ (http://XCF.Berkeley.EDU/pub/misc/smalltalk/FAQ/).

Usenet newsgroup: news:comp.lang.smalltalk.

["The Smalltalk-76 Programming System Design and
Implementation", D.H. Ingalls, 5th POPL, ACM 1978, pp. 9-16].

(2001-09-11)
smalltalk-80
(foldoc)
Smalltalk-80

The classic standard Smalltalk dialect, described
in Adele's book, cited below, commonly known as "The Blue
Book".

["Smalltalk-80: The Language and Its Implementation", Adele
Goldberg et al, A-W 1983].

[BYTE 6(8), Aug 1981].

(ftp://st.cs.uiuc.edu/pub/ISA),
(ftp://st.cs.uiuc.edu/pub/Smalltalk/MANCHESTER),
(ftp://gnu.org/pub/gnu).

Mail server: goodies-lib@r5.cs.man.ac.uk.

(2004-12-14)
smalltalk/v
(foldoc)
Smalltalk/V

The first widely available version of Smalltalk, developed
by Digitalk in 1986 for IBM PC and Macintosh.

(1995-02-14)
tuple space smalltalk
(foldoc)
Tuple Space Smalltalk

["Using Tuple Space Communication in Distributed
Object-Oriented Languages", S. Matsuoka et al, SIGPLAN Notices
23(11):276-284 (Nov 1988)].

(1994-11-08)

Nenašli ste slovo čo ste hľadali ? Doplňte ho do slovníka.

na vytvorenie tejto webstránky bol pužitý dictd server s dátami z sk-spell.sk.cx a z iných voľne dostupných dictd databáz. Ak máte klienta na dictd protokol (napríklad kdict), použite zdroj slovnik.iz.sk a port 2628.

online slovník, sk-spell - slovníkové dáta, IZ Bratislava, Malé Karpaty - turistika, Michal Páleník, správy, údaje o okresoch V4