大括号括起来的初始值设定项列表的无效使用
invalid use of brace-enclosed initializer list
我想初始化 Foo class
class Foo {
public:
struct MyStruct {
uint8 i;
char c;
};
Foo(MyStruct args...){
};
};
但是我遇到了一个错误
error: invalid use of brace-enclosed initializer list
auto test = Foo(
{1, 'a'},
{2, 'b'}
);
如果我用变量来做,不会有错误
Foo::MyStruct a1 = {1, 'a'};
Foo::MyStruct b2 = {2, 'b'};
auto test = Foo(a1, b2);
但我对此不太满意,我想使代码紧凑
您需要明确说明要传递给构造函数的类型。以下编译:
auto test = Foo(
Foo::MyStruct{1, 'a'},
Foo::MyStruct{2, 'b'}
);
请注意 aschepler 的评论,尽管 Foo(MyStruct args...)
不是 C++ 样式的可变参数函数。因此,如果您真的要尝试使用构造函数参数做一些事情,您可能会遇到麻烦。换句话说:你会惹上麻烦的:).
我想初始化 Foo class
class Foo {
public:
struct MyStruct {
uint8 i;
char c;
};
Foo(MyStruct args...){
};
};
但是我遇到了一个错误
error: invalid use of brace-enclosed initializer list
auto test = Foo(
{1, 'a'},
{2, 'b'}
);
如果我用变量来做,不会有错误
Foo::MyStruct a1 = {1, 'a'};
Foo::MyStruct b2 = {2, 'b'};
auto test = Foo(a1, b2);
但我对此不太满意,我想使代码紧凑
您需要明确说明要传递给构造函数的类型。以下编译:
auto test = Foo(
Foo::MyStruct{1, 'a'},
Foo::MyStruct{2, 'b'}
);
请注意 aschepler 的评论,尽管 Foo(MyStruct args...)
不是 C++ 样式的可变参数函数。因此,如果您真的要尝试使用构造函数参数做一些事情,您可能会遇到麻烦。换句话说:你会惹上麻烦的:).