c++:constructor 一问# Programming - 葵花宝典
yy
1 楼
请问
如果一个class A 没有定义任何的constructor,
A arrayA[10]; will be legal, for each element, will be initialized with
the compiler's default constructor.
如果 class A, 定义了一个 constructor like:
A(int number);
则: A arrayA[10]; will be illega since there lack of a default consturctor.
请问, 我得理解对吗?
谢谢
如果一个class A 没有定义任何的constructor,
A arrayA[10]; will be legal, for each element, will be initialized with
the compiler's default constructor.
如果 class A, 定义了一个 constructor like:
A(int number);
则: A arrayA[10]; will be illega since there lack of a default consturctor.
请问, 我得理解对吗?
谢谢