我是 C++ 编程的新手,我正在阅读继承概念,我对继承概念有疑问:如果基类和派生类具有相同的数据成员会发生什么。也请通过我的代码如下:
#include "stdafx.h"
#include <iostream>
using namespace std;
class ClassA
{
protected :
int width, height;
public :
void set_values(int x, int y)
{
width = x;
height = y;
}
};
class ClassB : public ClassA
{
int width, height;
public :
int area()
{
return (width * height);
}
};
int main()
{
ClassB Obj;
Obj.set_values(10, 20);
cout << Obj.area() << endl;
return 0;
}
在上面我声明了与基类数据成员同名的数据成员,我set_values()
用派生的类对象调用了函数来初始化数据成员width
和height
.
当我调用该area()
函数时,为什么它返回一些垃圾值而不是返回正确的值。只有当我在派生类中声明与基类数据成员同名的数据成员时才会发生这种情况。如果我删除派生类中声明的数据成员,它工作正常。那么在派生类中声明有什么问题呢?请帮我。