Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Parallel

Smalltalk: Requiem or Resurgence?


Functional and logical languages have their basis in mathematics, a science far more adept at modeling static systems than dynamic ones. Heeg contends that these kinds of languages lack the ability to model time, and must undergo awkward machinations to allow the systems built with them to change through time (this seems similar to the pain one experiences when modeling time in relational databases — an area of research also steeped in mathematics). He likens traditional, functional languages to a pair of polarizing lenses, in which the model for real-world phenomena are first separated into their constituent states and processes, programmed, compiled, and (re)linked by a linker to create the program. By contrast, object-oriented languages make it much easier to build dynamic systems, because they map concepts much more directly into software. There is a one-to-one mapping between the model (Class) and the phenomena being modelled. Instead of "programming," you simply "model."

The grandaddy of the object-oriented world, Smalltalk has fascinated developers since it appeared on the programming scene. I was inducted in 1988, having succeeded in creating a small visual mapping application in about two weeks (my previous feats had included programs marginally more complex than those of the "10 print 'hello'; 20 goto 10" variety). I was hooked. Though I'd just graduated from Biology, I signed up for a four-year compsci degree at Carleton University, a hotbed for Smalltalk education at the time.

That Smalltalk is an object-oriented language, however, doesn't really explain why it might be a better choice than other OO languages like C# or Java, and if so superior, why it has been supplanted by them as a language of choice for the enterprise in the last 10 years. This is the essence of the Smalltalk Paradox.

Heeg had some good answers for the first question. He began with solid material: a quote from the Goldberg/Robson Smalltalk bible:

"Smalltalk is based on a small number of concepts, but defined by unusual terminology. Due to the uniformity with which the object-message orientation is carried out in the system, there are very few new programming concepts to learn in order to understand Smalltalk...These concepts are presented by defining the five words...that make up the vocabulary of Smalltalk — object, message, class, instance, and method. These five words are defined in terms of each other, so it is almost as though the reader must know everything before knowing anything."

— Goldberg and Robson, Smalltalk-80: The Language and its Implementation, 1983.

In other words, the internal consistency of the language is at once beautiful and somewhat unsettling. As such, developers may find the concepts difficult to relate it to something else they already know.


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.