User Tools

Site Tools


at:tutorial:objects

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
at:tutorial:objects [2007/06/29 13:06] jorgeat:tutorial:objects [2007/06/29 13:27] jorge
Line 49: Line 49:
 Every object understands the message ''new'', which creates a clone (a shallow copy) of the receiver object and initializes the clone by invoking its ''init'' method with the arguments that were passed to new (''aX'' and ''aY'' in the example of the ''point'' object). Hence, the ''init'' method plays the role of “constructor” for AmbientTalk objects. AmbientTalk’s object instantiation protocol closely corresponds to class instantiation in class-based languages, except that the new object is a clone of an existing object, rather than an empty object allocated from a class. Every object understands the message ''new'', which creates a clone (a shallow copy) of the receiver object and initializes the clone by invoking its ''init'' method with the arguments that were passed to new (''aX'' and ''aY'' in the example of the ''point'' object). Hence, the ''init'' method plays the role of “constructor” for AmbientTalk objects. AmbientTalk’s object instantiation protocol closely corresponds to class instantiation in class-based languages, except that the new object is a clone of an existing object, rather than an empty object allocated from a class.
  
-===== Delegation and Dynamic Inheritance ===== +===== Delegation and Cloning ===== 
-AmbientTalk features object inheritance or delegation. By means of delegation, an object can reuse and extend the defintion of another establishing a child-parent relationship. We identify two kinds of delegation relationships: **IS-A** and **SHARE-A**, embodied by the ''extend: with:'' and ''share: with:'' language constructs respectively.+AmbientTalk features object inheritance or delegation. By means of delegation, an object can reuse and extend the defintion of another establishing a child-parent relationship. We identify two kinds of delegation relationships: **IS-A** and **SHARE-A**. These relationships define two different semantics for clonning child objects. Whereas clonning a **IS-A** child also clones its parent**SHARE-A** child shares the parent of the cloned object.
  
-The following code shows how to extend objects with a **IS-A** relationship.+The following code shows how to extend objects with a **IS-A** relationship. It uses the ''extend: with:'' language construct.
  
 <code> <code>
Line 63: Line 63:
 </code> </code>
  
-The following code shows how to extend objects with a **SHARE-A** relationship.+The following code shows how to extend objects with a **SHARE-A** relationship. It uses the ''share: with:'' language construct.
  
 <code> <code>
Line 75: Line 75:
  
  
-These relationships defines two different semantics for clonning child objects +===== Delegation and Dynamic Inheritance =====
- +
- +
- in the way  +
- +
- +
- +
-. While both relationships  +
- +
- Extending an object with a **is-a** relationship  +
- +
- +
-===== Delegation and cloning =====+
  
 ===== First-class Delegation ===== ===== First-class Delegation =====
at/tutorial/objects.txt · Last modified: 2013/05/17 20:23 by tvcutsem