如何使用初始化器列表初始化成员数组
在 C 0x 中,您可以使用初始化器列表初始化成员数组,如下所示:
<code class="cpp">Foo f = {1,3};</code>
但是,此代码在 g 4.6 中无法编译,导致错误:
incompatible types in assignment of ‘std::initializer_list<const int>&’ to ‘const int [2]’
要解决此问题,您可以使用可变参数模板构造函数:
<code class="cpp">struct Foo { int x[2]; template <typename... T> Foo(T... ts) : x{ts...} {} }; int main() { Foo f1(1, 2); // OK }</code>
或者,如果你可以不用常量,你可以跳过初始化并在函数体中填充数组:
<code class="cpp">struct Foo { int x[2]; Foo(std::initializer_list<int> il) { std::copy(il.begin(), il.end(), x); } };</code>
虽然后一种方法允许你使用初始化列表,它不提供像可变参数模板构造函数方法那样的编译时边界检查。
以上是如何在 C 0x 中使用初始化器列表初始化成员数组?的详细内容。更多信息请关注PHP中文网其他相关文章!