标签: c++ function
可能重复: Passing a constant array to a function in C/C++
void Bar (int *values) {} void Foo () { int values[3] = { -5, 2, 8}; Bar (values); }
但我想要以下内容。我怎样才能做到这一点?
void Foo () { Bar ({5,2,8}); //error C2143: syntax error : missing ')' before '{' }