<i id='FQZHv'><tr id='FQZHv'><dt id='FQZHv'><q id='FQZHv'><span id='FQZHv'><b id='FQZHv'><form id='FQZHv'><ins id='FQZHv'></ins><ul id='FQZHv'></ul><sub id='FQZHv'></sub></form><legend id='FQZHv'></legend><bdo id='FQZHv'><pre id='FQZHv'><center id='FQZHv'></center></pre></bdo></b><th id='FQZHv'></th></span></q></dt></tr></i><div id='FQZHv'><tfoot id='FQZHv'></tfoot><dl id='FQZHv'><fieldset id='FQZHv'></fieldset></dl></div>
    <tfoot id='FQZHv'></tfoot>

      • <bdo id='FQZHv'></bdo><ul id='FQZHv'></ul>

      <small id='FQZHv'></small><noframes id='FQZHv'>

      <legend id='FQZHv'><style id='FQZHv'><dir id='FQZHv'><q id='FQZHv'></q></dir></style></legend>
    1. C ++中函数中可变数量的参数

      Variable number of parameters in function in C++(C ++中函数中可变数量的参数)

          <small id='vTUOH'></small><noframes id='vTUOH'>

            <legend id='vTUOH'><style id='vTUOH'><dir id='vTUOH'><q id='vTUOH'></q></dir></style></legend>
            <i id='vTUOH'><tr id='vTUOH'><dt id='vTUOH'><q id='vTUOH'><span id='vTUOH'><b id='vTUOH'><form id='vTUOH'><ins id='vTUOH'></ins><ul id='vTUOH'></ul><sub id='vTUOH'></sub></form><legend id='vTUOH'></legend><bdo id='vTUOH'><pre id='vTUOH'><center id='vTUOH'></center></pre></bdo></b><th id='vTUOH'></th></span></q></dt></tr></i><div id='vTUOH'><tfoot id='vTUOH'></tfoot><dl id='vTUOH'><fieldset id='vTUOH'></fieldset></dl></div>
              <tfoot id='vTUOH'></tfoot>
                <tbody id='vTUOH'></tbody>
                <bdo id='vTUOH'></bdo><ul id='vTUOH'></ul>
                本文介绍了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);
                }
                

                推荐答案

                这些被称为 Variadic 函数.维基百科列出了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, last fixedparam), va_arg(va_list, cast type),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 ++中函数中可变数量的参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Constructor initialization Vs assignment(构造函数初始化 Vs 赋值)
                Is a `=default` move constructor equivalent to a member-wise move constructor?(`=default` 移动构造函数是否等同于成员移动构造函数?)
                Has the new C++11 member initialization feature at declaration made initialization lists obsolete?(声明时新的 C++11 成员初始化功能是否使初始化列表过时了?)
                Order of constructor call in virtual inheritance(虚继承中构造函数调用的顺序)
                How to use sfinae for selecting constructors?(如何使用 sfinae 选择构造函数?)
                Initializing a union with a non-trivial constructor(使用非平凡的构造函数初始化联合)
                <i id='fEn3q'><tr id='fEn3q'><dt id='fEn3q'><q id='fEn3q'><span id='fEn3q'><b id='fEn3q'><form id='fEn3q'><ins id='fEn3q'></ins><ul id='fEn3q'></ul><sub id='fEn3q'></sub></form><legend id='fEn3q'></legend><bdo id='fEn3q'><pre id='fEn3q'><center id='fEn3q'></center></pre></bdo></b><th id='fEn3q'></th></span></q></dt></tr></i><div id='fEn3q'><tfoot id='fEn3q'></tfoot><dl id='fEn3q'><fieldset id='fEn3q'></fieldset></dl></div>

                <small id='fEn3q'></small><noframes id='fEn3q'>

                  1. <legend id='fEn3q'><style id='fEn3q'><dir id='fEn3q'><q id='fEn3q'></q></dir></style></legend>
                        <tfoot id='fEn3q'></tfoot>
                          <tbody id='fEn3q'></tbody>
                          <bdo id='fEn3q'></bdo><ul id='fEn3q'></ul>