How does the compiler control protection of variables in memory? Is there a tag bit associated with private variables inside the memory? How does it work?
|
|
If you mean E.g., on my Linux/x86-64 w/GCC 4.6, the following program prints exactly what you expect. It is by no means portable and might print unexpected things on exotic compilers, but even those compilers will have their own specific ways to get to the private members.
(The complicated cast is there because |
|||||||||||||
|
|
It's the compiler's job to see that some members are private and disallow you from using them. They aren't There is however an important aspect, in that data members aren't required to be laid out in memory in the order in which they appear in the class definition, but they are required to for variables with the same access level. |
|||||||||||
|
