Jump to content

Cecil (programming language)

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 68.69.53.84 (talk) at 05:28, 15 March 2004. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Cecil is a pure Object-oriented programming language that has developed by Craig Chambers at the University of Washington in 1992 to be part of the Vortex project there. Cecil has many similarities to other Object-oriented programming languages, most notably Objective-C, Modula-3 and Self. The main goals of the project were extensibility, orthagonality, efficiency, and ease-of-use.
The language supports multiple and multi-methods, dynamic inheritance, and optional static type checking. Unlike most OOP systems, Cecil allows subtyping and code inheritance to be used separately, allowing run-time or external extension of object classes or instances. Like Objective-C, all object services in Cecil are invoked by message passing, and the language supports run-time class identification. These features allow Cecil to support dynamic, exploratory programming styles. Parameterized types and methods (generics, polymorphism), garbage collection, and delegation are also supported. Cecil also supports a module mechanism for isolation of independent libraries or packages. Cecil does not presently support threads or any other form of concurrency. A standard library for Cecil is also available and includes various collection, utility, system, I/O, and GUI classes.

The official Cecil group webpage: http://www.cs.washington.edu/research/projects/cecil/