Examples of references to const
int i = 3;
const int& j = i;
i = 4; // j is now 4
j = 3; // error: j is const
int& x = 10; // error: 10 is not an object
const int& y = 10; // y now names
// a copy of 10
Previous slide
Next slide
Back to first slide
View graphic version