作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有这段代码:
#include <iostream>
using namespace std;
class A
{
protected:
virtual ~A() { cout << "A destructor reached." << endl;}
friend class Z;
};
class B : public A
{
protected:
virtual ~B() { cout << "B destructor reached." << endl; }
};
class Z
{
public:
void Test();
friend class A;
};
void Z::Test()
{
A* derived = (A*) new B();
delete derived;
}
int main()
{
Z test;
test.Test();
}
会发生什么,B的析构函数会被调用吗?合法吗?如果不是,是否有任何方法可以调用派生的构造函数而不使每个类都派生自 A friend of Z?
最佳答案
标准,§11.5/1“访问虚函数”说
The access rules (Clause 11) for a virtual function are determined by its declaration and are not affected by the rules for a function that later overrides it.
因此只要您有权访问A::~A
,就可以调用B::~B
。但是您必须通过 A
调用它,因为 Z
无法访问 B
。
顺便说一句,Z
中的友元声明是无用的,因为其中没有任何内容是私有(private)的或 protected 。
关于c++ - 友情与传承,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18185930/
我正在使用 Eloquent/Laravel 设计一个数据库,我想知道以下是否是最佳实践。 对于“汽车”表,某些列特定于汽车类型(负载箱尺寸),而某些列则适用于所有汽车(颜色)。 如果我有一张表,其中
难道不能从 boost::variant 继承并使用结果类作为选择运算符的结果吗? struct jass_statement_node { }; typedef boost::variant , b
我是一名优秀的程序员,十分优秀!