扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
#includeusing namespace std; class Square{ public: double operator()(double x)const{ return x * x; } int operator()(int a,int b,int c=0)const{ return a+b-c; } }; int main(void){ Square sq; //括号里面的参数会被自动当作形参传入 cout << sq(12) << endl; //144 cout << sq(1,5,3) << endl; //3 cout << sq(1,3) << endl; //4 return 0; }
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流