编译以下类
class Interface
{
virtual void doIt() = 0;
virtual ~Interface() = 0;
};
inline Interface::~Interface() {}
使用gcc -fdump-class-hierarchy
.
gcc
发出
类接口 尺寸=4 对齐=4 基本尺寸=4 基本对齐=4 接口 (0x1a779c0) 0 几乎为空 vptr=((&接口::_ZTV9接口) + 8u)
“近乎空”的意义是什么?这是什么意思?