C++ 报错:
0 1 2 |
...... error: default argument given for parameter 2 of ‘bool Array::sortAdd(std::string, int)’ [-fpermissive] ...... |
c++可以在类的声明中,也可以在函数定义中声明缺省参数,但不能既在类声明中又在函数定义中同时声明缺省参数。因此,将定义或声明中的任意一个缺省参数删除即可。
C++ 报错:
0 1 2 |
...... error: default argument given for parameter 2 of ‘bool Array::sortAdd(std::string, int)’ [-fpermissive] ...... |
c++可以在类的声明中,也可以在函数定义中声明缺省参数,但不能既在类声明中又在函数定义中同时声明缺省参数。因此,将定义或声明中的任意一个缺省参数删除即可。