+ 5
I came from the java world so I don't understand how it works
suppose I have a class A with a attribute of type B (another class) please take the idea, sorry for errors class B {} class A { public: B b; } what happens with B if I have const A a;
3 Answers
+ 2
The object is still mutable internally. Same as with final in Java actually.
+ 1
what I mean is what happens to B
is it constant too?
thanks!
+ 1
so if I understand well "the pointer" of the variable can't change
thanks!