gpt4 book ai didi

c++ - 继承示例未打印预期结果

转载 作者:太空宇宙 更新时间:2023-11-04 14:54:32 25 4
gpt4 key购买 nike

尝试记住基本的 C++ 内容(已经很久了),并尝试使用编译器。我创建了一个简单的基/子继承示例。

我希望下面的输出

index 0 is 0
index 1 is 1
index 2 is 2

而是得到:

index 0 is 0
index 1 is 2
index 2 is 0

谁能指出我犯的明显错误?

#include <cstdlib>
#include <iostream>

#include <stdio.h>
#include <string>
using namespace std;

class Base
{
public:
Base(){x=0;}
int x;
};
class Derived : public Base
{
public:
Derived() { y=0;}
int y;
};

// practicing operator definition syntax
ostream& operator<<(ostream& ostr, const Base& base)
{
ostr << base.x << endl;
ostr << flush;
return ostr;
}

void init(Base *b)
{
for (int i = 0; i<3; i++)
{
b[i].x=i;
}
};

int main(int argc, char** argv)
{
Derived arr[3];
init(arr);
for (int idx = 0; idx< 3; idx++)
{
cout << "index is " << idx << ' ' << arr[idx] << endl;
}

return 0;
}

最佳答案

数组和多态性在 C++ 中不能混用。

DerivedBase对象具有不同的大小,您程序中涉及的任何指针算法都会失败。

你的 init方法是切片 Derived Base 中的对象对象。以下赋值具有未定义的行为,它在 Derived 上的某处设置了一些字节对象。

考虑使用 std::vector<std::unique_ptr<B>>作为替代品。

此外,您的 Base类缺少其虚拟析构函数,稍后会调用更多未定义的行为。

关于c++ - 继承示例未打印预期结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24224577/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com