Tagged Questions

10
votes
1answer
235 views

In C++0x, do non-static data member initializers override the implicit copy constructor?

According to N2628 related to c++0x, non-static data member initializers can be overridden by explicitly defined constructors, but it appears to be slightly nebulous about the implicitly defined copy ...
4
votes
5answers
303 views

Assignment operator and copy constructor in the presence of references

I am just experimenting with the references using this code: class A { }; class B { public: B(A& a): m_a(a){} A& m_a; }; int main() { A a; B b(a); B b1 = b; } I was ...
4
votes
4answers
199 views

MSVC9.0 bug or misunderstanding of virtual inheritance and friends?

consider the following code: class A { friend class B; friend class C; }; class B: virtual private A { }; class C: private B { }; int main() { C x; //OK default constructor generated ...
1
vote
4answers
113 views

Advice on Copy Constructor of a Class containing a non-copyable member reference

I have a class A which has an reference to an object of class B as a member. The copy constructor (and assignment operator) of class B is private. Do you think it is a valid and good idea to use the ...
1
vote
2answers
88 views

avoid copy by value when initializing reference

I have a function interface: struct iFace { virtual Type& getType() = 0; } and the idea is to retrieve it like: iFace& iface = getIface(); Type& type = iface.getType(); however, i ...
1
vote
2answers
165 views

Does the implicitly defined copy constructor in C++ call copy constructor for members too right?

Just want to double check that the default (implicitly defined by compiler) copy constructor for C++ classes performs the copy constructor on each member variable as well using the old value to get ...
1
vote
5answers
142 views

Opt-out of copy constructor

This might be a silly question, but... I've been writing a number of classes that utilize non-copyable members. These classes are never initialized via the copy constructor in my source. When I try ...
1
vote
5answers
1k views

C++ implicit copy constructor for a class that contains other objects

I know that the compiler sometimes provides a default copy constructor if you don't implement yourself. I am confused about what exactly this constructor does. If I have a class that contains other ...
0
votes
1answer
155 views

Do shallow copies share pointers? (C++)

I know that if I do something like this: class Obj { public: int* nine; }; Obj Obj1; //Awesome name int eight = 8; Obj1.nine = &eight; Obj Obj2 = Obj1; //Another Awesome name then Obj1's ...