If I do

string someString = "hello";
char c = someString[2];

does the c variable refer to a character inside someString, or is it a new independent char on it's own?

If it is not independent, how do I copy it?

link|improve this question

80% accept rate
It is already a copy of that value. – keith.layne Nov 18 '11 at 7:30
feedback

3 Answers

up vote 5 down vote accepted

c is a copy. If you wrote

char &c = someString[2];

then it would have been a reference.

link|improve this answer
feedback
char c = someString[2];

copies the character at position 2 into 'c'

link|improve this answer
feedback

It's independent because c is not a reference type - it is char, not char &.

A consequent of it being a value type, a copy is thus performed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.