发送多于整数的C ++函数作为参数

时间:2010-07-29 19:50:12

标签: 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 '{'
}

0 个答案:

没有答案