Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Пусть
- Type - какой-то тип
- Type typeVar; // typeVar - переменная типа Type
- Type * pointerToTypeVar {&typeVar}; // pointerToTypeVar - переменная типа "указатель на Type", содержащая в себе адрес typeVar
- Type & referenceToTypeVar {typeVar}; // referenceToType - переменная типа "ссылка на Type", ссылающаяся на typeVar
Advertisement
Add Comment
Please, Sign In to add comment