Why does this work?
#include <stdio.h>
class ClassA
{
public:
ClassA(int id) : my_id(id) { };
ClassA * makeNewA(int id)
{
ClassA *a = new ClassA(id);
printf("ClassA made with id %d\n", a->getId());
return a;
};
private:
int getId() {
return my_id;
};
private:
int my_id;
};
int main()
{
ClassA a(1);
ClassA *b = a.makeNewA(2);
return 0;
}
Irrespective of whether or not it's a good idea, why does it work? The public function ClassA::makeNewA(int)
instantiates a new ClassA and then calls a private function getId()
using the new object. Is a class automatically a friend of itself?
Thanks