1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-29 01:21:07 +02:00

Reassignment to reference doesn't cause error

This commit is contained in:
Geoff Liu
2014-12-01 21:39:49 -07:00
parent e1610bf1a9
commit 8ea39ded5c

View File

@@ -238,7 +238,7 @@ string& fooRef = foo; // This creates a reference to foo.
fooRef += ". Hi!"; // Modifies foo through the reference
cout << fooRef; // Prints "I am foo. Hi!"
fooRef = bar; // Error: references cannot be reassigned.
fooRef = bar; // Doesn't reassign `fooRef`. This is the same as `foo = bar`
const string& barRef = bar; // Create a const reference to bar.
// Like C, const values (and pointers and references) cannot be modified.