191k views
4 votes
An aggregate class's constructor can use a member initialization list to call the constructors for each of its member objects.

True / False.

User Thiru
by
6.2k points

1 Answer

2 votes

Answer:False

Explanation: Constructor is used for the initialization of the objects in a particular class .Member initialization list is the list that is supposed to work on data members of class by initializing it.So,the initialization list is not responsible for calling the constructor in a class rather works on the members of the class.Therefore, the statement given is false.

User Laxmi Narayan
by
6.8k points