Do the methods of a member variable have access to other private member variables within the same class? I have in mind a functor member variable.
Can a pointer to a private member variable be dereferenced and assigned to, outside of the class? What about in the method of another member variable?
Maybe something like
class A
{
someClass a,b;
A(){a(&b);}
}