C++ Primer(第5版) 练习 19.26

练习 19.26 说明下列声明语句的含义并判断它们是否合法:

extern "C" int compute(int *, int );
extern "C" double compute(double *, double);
环境:Linux Ubuntu(云服务器)
工具:vim

 

解释

不合法,C语言中不允许函数重载。

08-28 14:14