我有 2 个类,基类是“Port”,派生类是“VintagePort”。据我所知,如果我使用基类的引用或指针指向派生类的对象,它会自动找到正确的方法,而不是引用或指针,而是精确到对象(如果方法是虚拟的)。
在我的情况下,您可以看到两个类都有友元函数“operator<<”。但看起来当我使用基类指针时,它只从基类调用函数。如果我使用“cout << VintagePort”它可以正常工作。我的问题:它工作正常还是我应该在代码中修复一些东西?
std::ostream& operator<<(std::ostream& os, const Port& p)
{
os << p.brand << ", " << p.style << ", " << p.bottles << endl;
return os;
}
std::ostream& operator<<(std::ostream& os, const VintagePort& vp)
{
os << (const Port &) vp;
cout << ", " << vp.nickname << ", " << vp.year << endl;
return os;
}
VintagePort vp1;
VintagePort vp2("Gallo", "lekko brazowy", 50, "Blaze", 1990);
VintagePort vp3(vp2);
Port* arr[3];
arr[0] = &vp1;
arr[1] = &vp2;
arr[2] = &vp3;
for (int i = 0; i < 3; i++)
{
cout << ">>>>> " << i+1 << " <<<<<" << endl;
cout << *arr[i]; // call for base class instead derived class
arr[i]->Show();
}