在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
曾经我们说重定义一般是函数或者变量的重定义。今天遇到了一个新类型的重定义errorC2365 #include <iostream> using namespace std; class Base { public: Base(void); ~Base(void); size_t size()const{return n;} protected: //private: size_t n; //int n(int x){return x;}; int n(char x){return 11;} }; 编译错误: \deriveexclude\deriveexclude\base.h(14): error C2365: “Base::n”: 重定义;曾经的定义是“数据成员” 这个错误的原因是在C++类中。类的数据成员不能和函数成员重名,否则就会引起错误。 再如以下的样例: // C2365.cpp // compile with: /c class C1 { int CFunc(); char *CFunc; // C2365, already exists as a member function int CMem; char *CMem(); // C2365, already exists as a data member }; |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论