Information AboutModula-3 |
| CATEGORIES ABOUT MODULA-3 | |
| modula programming language family | |
| object-oriented programming languages | |
| programming languages | |
| systems programming languages | |
Modula-3 is a Programming Language conceived as a successor to an upgraded version of Modula-2 . While it has been influential in research circles (influencing the designs of languages such as Java and C# ), it has not been adopted widely in the industry. It was designed by Luca Cardelli, Jim Donahue, Mick Jordan, Bill Kalsow and Greg Nelson at the Digital Equipment Corporation ( DEC ) Systems Research Center (SRC) and Olivetti in the late 1980s. Its design was heavily influenced by work on the Modula-2+ language in use at SRC at the time, which was the language in which the operating system for the DEC Firefly multiprocessor VAX workstation was written. Modula-3's main features are simplicity and safety while preserving the power of a systems-programming language. Modula-3 aimed to continue the Pascal tradition of type safety, while introducing new constructs for practical real-world programming. In particular Modula-3 added support for Generic Programming (similar to Templates ), Multithreading , Exception Handling , Garbage Collection , Object-oriented Programming , partial revelation and encapsulation of unsafe code. The design goal of Modula-3 was a language that implements the most important features of modern Imperative languages in quite basic forms. Thus allegedly dangerous and complicating features like Multiple Inheritance and Operator Overloading were omitted. HISTORICAL DEVELOPMENT The Modula-3 project started in November 1986 when Maurice Wilkes wrote to Niklaus Wirth with some ideas for a new version of Modula. Wilkes had been working at DEC just prior to this point, and had returned to England and joined Olivetti's Research Strategy Board. Wirth had already moved on to Oberon , but had no problems with Wilkes's team continuing development under the Modula name. The language definition was completed in August 1988, and an updated version in January 1989. Compilers from DEC and Olivetti soon followed, and 3rd party implementations after that. During the 1990s, Modula-3 gained considerable currency as a teaching language, but it was never widely adopted for industrial use. Contributing to this may have been the demise of DEC, a key Modula-3 supporter. In any case, in spite of Modula-3's simplicity and power, it appears that there was little demand for a procedural Compiled Language with restricted implementation of Object-oriented Programming . For a time, a commercial Compiler called CM3 and Integrated Development Environment called Reactor were offered by Critical Mass, Inc., but that company ceased active operations in 2000. Modula-3 is now taught in universities only in comparative programming language courses, and its textbooks are out of print. Essentially the only corporate supporter of Modula-3 is elego Software Solutions GmbH, which inherited the complete sources from Critical Mass and has since made several releases of the CM3 system in source and binary form. The Reactor IDE could not, however, be released yet by elego due to unclear licensing terms. In March 2002 elego also took over the repository of the last other active Modula-3 distribution, PM3, till then maintained at the École Polytechnique De Montréal . LANGUAGE FEATURES , is that the EXCEPT construct defined a pseudo-CASE with each possible exception as a case in one EXCEPT clause. Modula-3 also supports a LOOP...EXIT...END construct that loops until an EXIT occurs, a structure equivalent to a simple loop inside of a TRY...EXCEPT clause. Object support is intentionally kept to its simplest terms. An object type (class) is introduced with the OBJECT declaration, which has essentially the same syntax as a RECORD declaration, although the type so declared is a reference type, whereas RECORDs in Modula-3 are not (similarly to structs in C). For instance: Defines a new object type "A", which contains a single field "a" and method p. The procedure AP that implements p must be defined elsewhere: Method calls are accomplished with o.p();, where o is a variable of type A.Modula-3's REVEAL construct provides a conceptually simple and clean yet very powerful mechanism for hiding implementation details from clients, with arbitrarily many levels of "friendliness".In summary, the language features:
Modula-3 is one of the rare languages whose evolution of features is documented. In ''Systems Programming with Modula-3'' four essential points of the language design are intensively discussed. These topics are: Structural vs. name equivalence, subtyping rules, generic modules, parameter modes like READONLY. SYNTAX A common example of a language's Syntax is the Hello World Program . MODULE Main; IMPORT IO; BEGIN IO.Put("Hello World ") END Main. STANDARD LIBRARY FEATURES Continuing a trend started with the C Programming Language , many of the features required to write real programs were left out of the language definition itself and instead provided via a number of standard libraries. Standard libraries provide the following features.
As in C, I/O is also provided via libraries, in Modula-3 called Rd and Wr. The object-oriented design of the Rd and Wr libraries is covered in detail in the book by Greg Nelson. An interesting aspect of Modula-3 is that it is one of few programming languages whose standard libraries have been formally verified not to contain various types of bugs, including locking bugs. This was done under the auspices of the Extended Static Checker project at DECSRC . IMPLEMENTATIONS Several compilers are available, most of them Open Source .
Since the only aspect of C data structures that is missing from Modula-3 is the union type, all existing Modula-3 implementations are able to provide good binary compatibility with C language type declarations of arrays and structs. BOOKS None of these books are still in print, although used copies are obtainable.
PROJECTS USING MODULA-3
EXTERNAL LINKS
|
|
|