M
Mike -- Email Ignored
If I have:
class A {...};
class B {...};
class C
{
...
A a;
B b;
};
where all classes have methods that return values
that depend on initialization, and the constructor:
C::C(...numerous args...)
: a(...), b(a.getSomething(),...)
{}
where the value returned by a.getSonething() depends upon
complete initialization of object a,
can I count on object a being initialized in time
to supply the correct value?
Thanks for your help.
Mike.
class A {...};
class B {...};
class C
{
...
A a;
B b;
};
where all classes have methods that return values
that depend on initialization, and the constructor:
C::C(...numerous args...)
: a(...), b(a.getSomething(),...)
{}
where the value returned by a.getSonething() depends upon
complete initialization of object a,
can I count on object a being initialized in time
to supply the correct value?
Thanks for your help.
Mike.