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 10:39] jorgeat:tutorial:objects [2007/06/29 13:21] jorge
Line 18: Line 18:
     def sumOfSquares() { x*x + y*y };     def sumOfSquares() { x*x + y*y };
   }   }
->><object:439658> 
 </code> </code>
  
Line 46: Line 45:
 <code> <code>
 > def anotherPoint := point.new(2,3) > def anotherPoint := point.new(2,3)
->><object:13393187> 
 </code> </code>
  
Line 52: Line 50:
  
 ===== Delegation and Dynamic Inheritance ===== ===== Delegation and Dynamic Inheritance =====
-AmbientTalk features object inheritance or delegation. By means of delegation, an object can reuse and extend the defintion of another. An object can extend to another by using either an **is-a** or a **share-a** relationshiprepresented 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 relationshipWe 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.
  
-While both relationships +The following code shows how to extend objects with a **IS-A** relationship. It uses the ''extend: with:'' language construct.
  
- Extending an object with a **is-a** relationship +<code> 
 +> def point3D := extend: point with: { 
 +    def z := 0; 
 +    def sumofsquares() { 
 +      super.sumofsquares() + z*z 
 +    } 
 +  
 +</code> 
 + 
 +The following code shows how to extend objects with a **SHARE-A** relationship. It uses the ''share: with:'' language construct. 
 + 
 +<code> 
 +> def point3D := share: point with: { 
 +    def z := 0; 
 +    def sumofsquares() { 
 +      super.sumofsquares() + z*z 
 +    } 
 +  } 
 +</code>
  
  
at/tutorial/objects.txt · Last modified: 2013/05/17 20:23 by tvcutsem