Questions tagged «array-initialize»


10
在C ++中的类初始化程序中初始化const数组
我在C ++中有以下课程: class a { const int b[2]; // other stuff follows // and here's the constructor a(void); } 问题是,鉴于b不能在构造函数的函数体内进行初始化,我如何在初始化列表中初始化b const? 这不起作用: a::a(void) : b([2,3]) { // other initialization stuff } 编辑:恰当的例子是当我可以b为不同的实例使用不同的值时,但已知这些值在实例的生存期内是恒定的。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.