如何将可选参数传递给C ++中的方法?

时间:2010-09-24 04:01:34

标签: c++ optional-arguments

如何将可选参数传递给C ++中的方法? 任何代码段......

8 个答案:

答案 0 :(得分:106)

以下是将模式作为可选参数

传递的示例
void myfunc(int blah, int mode = 0)
{
    if (mode == 0)
        do_something();
     else
        do_something_else();
}

你可以用两种方式调用myfunc,两者都有效

myfunc(10);     // Mode will be set to default 0
myfunc(10, 1);  // Mode will be set to 1

答案 1 :(得分:33)

关于默认参数用法的重要规则:
默认参数应在最右端指定,一旦指定默认值参数,就不能再次指定非默认参数。 例如:

int DoSomething(int x, int y = 10, int z) -----------> Not Allowed

int DoSomething(int x, int z, int y = 10) -----------> Allowed 

答案 2 :(得分:20)

如果有多个默认参数,有些人可能会感兴趣:

void printValues(int x=10, int y=20, int z=30)
{
    std::cout << "Values: " << x << " " << y << " " << z << '\n';
}

给出以下函数调用:

printValues(1, 2, 3);
printValues(1, 2);
printValues(1);
printValues();

生成以下输出:

Values: 1 2 3
Values: 1 2 30
Values: 1 20 30
Values: 10 20 30

参考:http://www.learncpp.com/cpp-tutorial/77-default-parameters/

答案 3 :(得分:12)

使用默认参数

template <typename T>
void func(T a, T b = T()) {

   std::cout << a << b;

}

int main()
{
    func(1,4); // a = 1, b = 4
    func(1);   // a = 1, b = 0

    std::string x = "Hello";
    std::string y = "World";

    func(x,y);  // a = "Hello", b ="World"
    func(x);    // a = "Hello", b = "" 

}

注意:以下是不正确的

template <typename T>
void func(T a = T(), T b )

template <typename T>
void func(T a, T b = a )

答案 4 :(得分:9)

随着C ++ 17中std :: optional的引入,您可以传递可选参数:

#include <iostream>
#include <string>
#include <optional>

void myfunc(const std::string& id, const std::optional<std::string>& param = std::nullopt)
{
    std::cout << "id=" << id << ", param=";

    if (param)
        std::cout << *param << std::endl;
    else
        std::cout << "<parameter not set>" << std::endl;
}

int main() 
{
    myfunc("first");
    myfunc("second" , "something");
}

输出:

id=first param=<parameter not set>
id=second param=something

请参见https://en.cppreference.com/w/cpp/utility/optional

答案 5 :(得分:7)

通常通过设置参数的默认值:

int func(int a, int b = -1) { 
    std::cout << "a = " << a;
    if (b != -1)        
        std::cout << ", b = " << b;
    std::cout << "\n";
}

int main() { 
    func(1, 2);  // prints "a=1, b=2\n"
    func(3);     // prints "a=3\n"
    return 0;
}

答案 6 :(得分:6)

用逗号分隔它们,就像没有默认值的参数一样。

int func( int x = 0, int y = 0 );

func(); // doesn't pass optional parameters, defaults are used, x = 0 and y = 0

func(1, 2); // provides optional parameters, x = 1 and y = 2

答案 7 :(得分:2)

要遵循此处给出的示例,但为了通过使用头文件来阐明语法,函数声明包含可选参数默认值。

myfile.h

void myfunc(int blah, int mode = 0);

myfile.cpp

void myfunc(int blah, int mode) /* mode = 0 */
{
    if (mode == 0)
        do_something();
     else
        do_something_else();
}