CE求助

P1464 Function

@[叶绿素](/space/show?uid=13550) 这是啥子写法
by Gary818 @ 2019-07-07 06:33:14


```cpp #include <bits/stdc++.h> using namespace std; long long find(long long a, long long b, long long c) ``` ~~典型的找死写法~~ #include <bits/stdc++.h>把algorithm头文件给引用了,algorithm头文件里有一个std::find()函数,你又using namespace std;,函数重名,编译器也不知道调用哪一个。(更巧的是,这个函数也有三个参数,那就更没法判断了) 改函数名吧。
by theaceblock @ 2019-07-07 07:44:40


话说是不是只要自己写的find()不是三个参数就行了?
by xo_永夜_ox @ 2019-07-07 07:57:32


@[永夜的心](/space/show?uid=133820) 貌似参数类型不一样也可以,会被编译器认定为重载。
by t162 @ 2019-07-07 08:13:13


@[tianshu](/space/show?uid=121080) 好的感谢你,我想起来了好像是有find函数
by 叶绿素 @ 2019-07-07 08:39:45


|