Revision: 766
Updated Code
at August 4, 2006 10:36 by yuconner
Updated Code
//<type> &<alias> = <reference var> //<type> &<alias> //Example: int a; int &r = a; // declares a reference to the integer object "a"
Revision: 765
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at August 4, 2006 10:33 by yuconner
Initial Code
int value; // declares an integer int &a_value = value; // declares a reference to the integer object value
Initial URL
Initial Description
Another name for the same thing // & = // &
Initial Title
alias define (reference)
Initial Tags
Initial Language
C++