课程
/后端开发
/Python
/初识Python
我记得c++里面也有默认参数,可是我忘了,怎么用来着的?
2017-04-22
源自:初识Python 7-6
正在回答
#include <iostream>
using namespace std;
class test{
public:
int cal(int a = 0){
return a ? a : a*a;
}
};
int main()
{
test t;
cout << t.cal() << endl;
cout << t.cal(3) << endl;
return 0;
在类里面的构造方法可以用
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序