方法的重载能否实现
#include
/* 考虑一下哪个输出该用无参函数哪个输出该用有参函数呢? */ int Study() { printf("小明在慕课网上学习\n"); return 0; } int Study(int n) { printf("小明在慕课网上已经参与学习了%d门课程\n",n); return 0; } int main() { Study(); Study(1); return 0; }方法的重载编译器没办法实现,在Vc++上可以运行出来#include
/* 考虑一下哪个输出该用无参函数哪个输出该用有参函数呢? */ int Study() { printf("小明在慕课网上学习\n"); return 0; } int Study(int n) { printf("小明在慕课网上已经参与学习了%d门课程\n",n); return 0; } int main() { Study(); Study(1); return 0; }方法的重载编译器没办法实现,在Vc++上可以运行出来2016-07-13
举报