作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在处理这段特定代码时遇到了问题:似乎虚函数没有像我预期的那样工作。
#include <cstdio>
#include <string>
#include <vector>
class CPolygon
{
protected:
std::string name;
public:
CPolygon()
{
this->name = "Polygon";
}
virtual void Print()
{
printf("From CPolygon: %s\n", this->name.c_str());
}
};
class CRectangle: public CPolygon
{
public:
CRectangle()
{
this->name = "Rectangle";
}
virtual void Print()
{
printf("From CRectangle: %s\n", this->name.c_str());
}
};
class CTriangle: public CPolygon
{
public:
CTriangle()
{
this->name = "Triangle";
}
virtual void Print()
{
printf("From CTriangle: %s\n", this->name.c_str());
}
};
int main()
{
CRectangle rect;
CTriangle trgl;
std::vector< CPolygon > polygons;
polygons.push_back( rect );
polygons.push_back( trgl );
for (std::vector<CPolygon>::iterator it = polygons.begin() ; it != polygons.end(); ++it)
{
it->Print();
}
return 0;
}
我希望看到:
From CRectangle: Rectangle
From CTriangle: Triangle
相反,我得到:
From CPolygon: Rectangle
From CPolygon: Triangle
这是预期的行为吗?我应该如何调用 Print() 函数以获得我期望的输出?
最佳答案
Is this expected behavior? How should I call Print() function to get output expected by me?
是的,这是预期的行为。
问题在于标准容器,包括vector
,具有值语义:它们存储您传递给的对象的拷贝 push_back()
。另一方面,多态性基于引用语义 - 它需要引用或指针才能正常工作。
在您的情况下发生的是您的 CPolygon
对象获得 sliced ,这不是你想要的。您应该在 vector 中存储指针(可能是智能指针)而不是 CPolygon
类型的对象。
这就是你应该如何重写你的 main()
函数:
#include <memory> // For std::shared_ptr
int main()
{
std::vector< std::shared_ptr<CPolygon> > polygons;
polygons.push_back( std::make_shared<CRectangle>() );
polygons.push_back( std::make_shared<CTriangle>() );
for (auto it = polygons.begin() ; it != polygons.end(); ++it)
{
(*it)->Print();
}
return 0;
}
这是一个live example .
关于c++ - 虚函数和 vector 迭代器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16872584/
我有一个特别的问题想要解决,我不确定是否可行,因为我找不到任何信息或正在完成的示例。基本上,我有: class ParentObject {}; class DerivedObject : publi
在我们的项目中,我们配置了虚 URL,以便用户可以在地址栏中输入虚 URL,这会将他们重定向到原始 URL。 例如: 如果用户输入'http://www.abc.com/partner ',它会将它们
我是一名优秀的程序员,十分优秀!