show/hide this revision's text 4 deleted 21 characters in body

Self is the by-convention name.

In reality, it's "Self" is just a name reference to a place on the stack that store address pointing to object in the heap. Forcing read-only on this variable is possible, apparently the designer decided not to. I believe the decision is arbitrary.

Can't see any case where this is useful, that'd merely change a value in stack. Also, changing this value can be dangerous as there is no guarantee that the behavior of the code that reference instance's member will be consistence across compiler versions.

show/hide this revision's text 3 added 1 characters in body

Self is the by-convention name. In reality, it's just reference to a place on the stack that store address pointing to object in the heap. Forcing read-only on this variable is possible, apparently the designer decided not to. I believe the decision is arbitrary.

Can't see any case where this is useful, that'd merely change a value in stack. Also, changing this value can be dangerous as there is no guarantee that the behavior of the code that reference instance's member will be consistence across compiler versionversions.

show/hide this revision's text 2 added 113 characters in body

Self is the by-convention name. In reality, it's just reference to a place on the stack that store address pointing to object in the heap. Forcing read-only on this variable is possible, apparently the designer decided not to. I believe the decision is arbitrary.

Can't see any case where this is useful, that'd merely change a value in stack. Changing Also, changing this value can be dangerous as there is no guarantee that the behavior might not of the code that reference instance's member will be consistence across compiler version.

show/hide this revision's text 1