变量自变量列表 (...) (C++/CLI)

此示例展示了如何在 C++/CLI 中使用 ... 语法来实现包含可变数量实参的函数。

注意

本主题是关于 C++/CLI。 若要了解如何在 ISO 标准 C++ 中使用 ...,请参阅省略号和可变实参模板,以及后缀表达式中的“省略号和默认实参”部分。

使用 ... 的形参必须是形参列表中的最后一个形参。

示例

代码

// mcppv2_paramarray.cpp
// compile with: /clr
using namespace System;
double average( ... array<Int32>^ arr ) {
   int i = arr->GetLength(0);
   double answer = 0.0;

   for (int j = 0 ; j < i ; j++)
      answer += arr[j];

   return answer / i;
}

int main() {
   Console::WriteLine("{0}", average( 1, 2, 3, 6 ));
}
3

代码示例

下面的示例展示了如何在 C# 中调用需要使用可变数量实参的 Visual C++ 函数。

// mcppv2_paramarray2.cpp
// compile with: /clr:safe /LD
using namespace System;

public ref class C {
public:
   void f( ... array<String^>^ a ) {}
};

可以在 C# 或 Visual Basic(举个例子)中调用函数 f,就好像它是可以使用可变数量实参的函数一样。

在 C# 中,可以通过可变数量实参调用传递给 ParamArray 形参的实参。 下面的示例代码是用 C# 编写。

// mcppv2_paramarray3.cs
// compile with: /r:mcppv2_paramarray2.dll
// a C# program

public class X {
   public static void Main() {
      // Visual C# will generate a String array to match the
      // ParamArray attribute
      C myc = new C();
      myc.f("hello", "there", "world");
   }
}

在 Visual C++ 中调用 f 可以传递初始化数组或长度可变数组。

// mcpp_paramarray4.cpp
// compile with: /clr
using namespace System;

public ref class C {
public:
   void f( ... array<String^>^ a ) {}
};

int main() {
   C ^ myc = gcnew C();
   myc->f("hello", "world", "!!!");
}

另请参阅

数组