(1) class foo { private: MyArray Array{ 100 }; }; (2) class foo { public: foo() : Array(100) {} private: MyArray Array; };