C ++函数中可变数量的参数 [英] Variable number of parameters in function in C++

查看:101
本文介绍了C ++函数中可变数量的参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在C ++中的函数中使用可变数量的参数。

How I can have variable number of parameters in my function in C++.

C#中的模拟:

public void Foo(params int[] a) {
    for (int i = 0; i < a.Length; i++)
        Console.WriteLine(a[i]);
}

public void UseFoo() {
    Foo();
    Foo(1);
    Foo(1, 2);
}

Java中的模拟:

public void Foo(int... a) {
    for (int i = 0; i < a.length; i++)
        System.out.println(a[i]);
}

public void UseFoo() {
    Foo();
    Foo(1);
    Foo(2);
}


推荐答案

这些称为可变参数函数。 Wikipedia列出了 C ++示例代码

These are called Variadic functions. Wikipedia lists example code for C++.


要使用C编程
语言可移植地实现可变的
函数,请使用标准 stdarg.h 标头
文件。较旧的
varargs.h标头已弃用
,而推荐使用stdarg.h。 在C ++中,应使用
头文件 cstdarg

To portably implement variadic functions in the C programming language, the standard stdarg.h header file should be used. The older varargs.h header has been deprecated in favor of stdarg.h. In C++, the header file cstdarg should be used.

要创建可变参数函数,必须将
省略号( ... )放在参数列表的
末尾。在函数的
主体内,必须定义
类型的变量 va_list 。然后
va_start(va_list,最后固定的
参数)
va_arg(va_list,强制类型)
va_end(va_list)可以使用。以
为例:

To create a variadic function, an ellipsis (...) must be placed at the end of a parameter list. Inside the body of the function, a variable of type va_list must be defined. Then the macros va_start(va_list, last fixed param), va_arg(va_list, cast type), va_end(va_list) can be used. For example:



#include <stdarg.h>

double average(int count, ...)
{
    va_list ap;
    int j;
    double tot = 0;
    va_start(ap, count); //Requires the last fixed parameter (to get the address)
    for(j=0; j<count; j++)
        tot+=va_arg(ap, double); //Requires the type to cast to. Increments ap to the next argument.
    va_end(ap);
    return tot/count;
}

这篇关于C ++函数中可变数量的参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆