运维调试记录:C++ compile error: default argument given for parameter

问题:

编译C++代码时出现错误提示如下:

> g++ *.cpp

fileTest.cpp:17:117: error: default argument given for parameter 1 ofMyClass::fileTest(const string&, std::string, std::string, std::string)’ [-fpermissive] 

fileTest.h:15:14: error: after previous specification inMyClass::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://*.com/questions/13295530/this-is-a-new-compile-error-for-me

上一篇:关于根据后台代码获取confirm返回结果后再执行后台代码(转)


下一篇:【错误记录】Android 模拟器安装应用报错 ( INSTALL_FAILED_INSUFFICIENT_STORAGE )