So, when setting up the composition of the class, the contained classes can be called using the default constructor, but not with the one that takes the parameters?
This confuses; let me give an example.
#include "Ah" class B { private: A legal;
Assuming both the default constructor and the one that takes 2 integers, there is only one of them. Why is this?
source share