曾经我们说重定义一般是函数或者变量的重定义。今天遇到了一个新类型的重定义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
};