Computer Science - Object Oriented Programming Using C++ - Discussion

Discussion Forum : Object Oriented Programming Using C++ - Section 10 (Q.No. 7)
7.
A constructor initialization list is preceded by
a. semicolon
a colon
two colons
a space
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
1 comments Page 1 of 1.

Waqas said:   10 years ago
class GameObject : public PhysicsObject, public CMesh

{
public:
GameObject();
GameObject(int i) : PhysicsObject(int i);
~GameObject();
};

Post your comments here:

Your comments will be displayed after verification.