In this simple example, why do I need to make 'member' const in order to get this to compile?
struct ClassA
{
ClassA(int integer) {}
};
struct ClassB
{
ClassB(int integer):
member(integer)
{
}
const ClassA& member;
};
int main()
{
ClassB* b = new ClassB(12);
return 0;
}
Otherwise, I get this error:
error: invalid initialization of reference of type 'ClassA&' from expression of type 'int'
b? And your code is unsafe; once theClassBconstructor ends, the temporaryClassAthat was made fromintegerends its lifetime, and you are referring to nothing. – GManNickG Sep 3 '10 at 16:45ClassB's constructor a reference to aClassA, though now you have to make sureClassBnever lives longer than theClassApassed in. – GManNickG Sep 3 '10 at 16:58