变量参数列表 (...) (C++/CLI)

此示例演示如何在 Visual C++ 中使用 ... 语法实现的参数数目可变的功能。

使用 ... 的参数都必须位于最后面的参数。

示例

9dt1588w.collapse_all(zh-cn,VS.110).gif代码

// 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 ));
}

9dt1588w.collapse_all(zh-cn,VS.110).gifOutput

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 ) {}
};

例如,函数 f 可以从 C# 或 Visual Basic 调用,就象它可以使用参数数目可变的功能。

在 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");
   }
}

为 f 的调用在 Visual C++ 可以通过一个初始化数组或一个变长数组。

// 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", "!!!");
}

请参见

参考

数组(C++ 组件扩展)