I'm not even sure, for example, if I can use it like a normal variable. There doesn't appear to be a mutable version. And does mutable mean it's value can be changed?
|
1
|
|
|
|
What do you mean by "full example usage"? Can you give a context for the kind of example you're looking for? What do you mean by using something as a "normal" variable? You can get an
You can later change where your pointer is pointing to, but you can't change the value:
|
||||
|
|
|
You can always assign to an immutable variable a different object reference so this works:
|
||
|
|

mutablemeans its value can be changed;immutablemeans it cannot change value. – fbrereto Sep 3 at 23:27