本文共 528 字,大约阅读时间需要 1 分钟。
编译C++代码时出现错误提示如下:
> g++ *.cppfileTest.cpp:17:117: error: default argument given for parameter 1 of ‘MyClass::fileTest(const string&, std::string, std::string, std::string)’ [-fpermissive] fileTest.h:15:14: error: after previous specification in ‘MyClass::fileTest(const string&, std::string, std::string, std::string)’ [-fpermissive]
既可以在类的声明中,也可以在函数定义中声明缺省参数,但不能既在类声明中又在函数定义中同时声明缺省参数。
You can declare default arguments in the class declaration or in the function definition, but not both.
因此,将定义或声明中的任一个缺省参数删除即可。
转载地址:http://qkvra.baihongyu.com/