| Common Lisp Object System |
Article Index for Common Lisp |
Shopping Lisp |
Website Links For Common |
Information AboutCommon Lisp Object System |
| CATEGORIES ABOUT COMMON LISP OBJECT SYSTEM | |
| lisp programming language | |
| object-oriented programming | |
|
The Common Lisp Object System (CLOS) is the facility for Object-oriented Programming which is part of ANSI Common Lisp . CLOS is a Dynamic object system which differs radically from the OOP facilities found in more static languages such as C++ or Java . CLOS was inspired by earlier Lisp object systems such as MIT Flavors and CommonLOOPS , although it is more general than either. Originally proposed as an add-on, CLOS was adopted as part of the ANSI standard for Common Lisp and has been adapted into other Lisp dialects like EuLisp or Emacs Lisp ."CLOS is a standard. Multiple vendors supply CLOS. CLOS (or parts of it) is being used to add object orientation to other Lisp dialects such as EuLisp or Emacs Lisp." pg 110 of Veitch 1998 FEATURES CLOS is a Multiple Dispatch system. This means that Method s can be specialized upon the types of all of their arguments. Most OO languages are single-dispatch, meaning that methods are only specialized on the first argument. Methods in CLOS are grouped into Generic Function s; a generic function is a collection of methods with the same name and argument structure, but with differently-typed arguments. Like the OO systems in most dynamic languages (such as Python ), CLOS does not enforce Encapsulation . Any data member (or ''slot'') can be accessed using the slot-value function or via (optionally auto-generated) Accessor Method s. CL programmers use the language's Package facility to declare which functions or data structures are intended for export.Apart from normal ("primary") methods, there also are :before, :after, and :around methods. These modify the order in which methods are executed on a derived class. An :around method can specify whether the primary method is executed at all. Additionally, the programmer can adjust if all possible primary methods along the Class Hierarchy should be called or just the one providing the closest match.CLOS allows Multiple Inheritance . When the default order in which methods are executed in multiple inheritance is not correct, the programmer may resolve the Diamond Inheritance Problems by specifying the order of method combinations. CLOS is dynamic, meaning that not only the contents, but also the ''structure'' of its objects can be modified at runtime. CLOS supports changing class definitions on-the-fly (even when instances of the class in question already exist) as well as changing the class membership of a given instance through the change-class operator.CLOS is not a Prototype Language : Classes must be defined before objects can be instantiated as a member of that class. META-OBJECT PROTOCOL Outside of the ANSI standard, there is a widely implemented extension to CLOS called the Meta-Object Protocol (MOP) . The MOP defines a standard interface to the underpinnings of the CLOS implementation, treating classes themselves as instances of Metaclass es, and allows the definition of new metaclasses and the modification of basic class behavior. The flexibility of the CLOS MOP prefigures Aspect-oriented Programming , which was later developed by some of the same engineers, such as Gregor Kiczales . Making Lisp object oriented is easy: You can do it in two pages of code ( Graham, 1994 ). Making object-oriented Lisp as extensible and flexible as the rest of Lisp is more difficult. Although CLOS is a complete object system, CLOS is implemented in an object-oriented fashion. The object-oriented implementation of CLOS is known as the CLOS Metaobject Protocol (or MOP) and permits the object system to be customizable and extensible.pg 108 of Veitch 1998 REFERENCES
LITERATURE
|
|
|