Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Introduction to References | References Fundamentals
C++ Pointers and References

book
Introduction to References

A reference is an alias, or an alternative name, for an existing variable. It provides a way to access the value of a variable indirectly through another name. They do not have a memory address of their own. Instead they refer to the memory address of the variable they are referencing.

h

reference

copy
int originalVariable = 42;
int& referenceVariable = originalVariable;
12
int originalVariable = 42; int& referenceVariable = originalVariable;

Now referenceVariable is an alias for originalVariable. The primary purpose of references is to simplify and make safe, more readable code and avoid unnecessary memory overhead.

Advantages of Reference

question mark

What is false about the references?

Select the correct answer

Alt var klart?

Hvordan kan vi forbedre det?

Takk for tilbakemeldingene dine!

Seksjon 3. Kapittel 1

Spør AI

expand
ChatGPT

Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår

some-alt