Go backward to Null(): Test for Null Pointer
Go up to Selection
Go forward to ->: Dereferencing

*: Indirection

e = *p
*p = e
      T e
      Pointer<T> p

Specification: The first form returns the object e stored in the memory block to which p refers. The second form destructively updates this memory block by overwriting its content with e.

Constraint: It is illegal to apply * to an unbound p.

Complexity: O(1).


Wolfgang.Schreiner@risc.uni-linz.ac.at
Id: main.tex,v 1.10 1996/04/04 11:45:47 schreine Exp

Prev Up Next