// Method One class ClassName { public: ClassName() : m_vecInts() {} private: std::vector m_vecInts; } // Method Two class ClassName { public: C
You do not have to initialise it explcitly, it will be created when you create an instance of your class.