写错了吗?
class A {
public:
virtual ~A() = 0;
};
一个抽象的基类?
至少可以在MSVC中进行编译...它会在运行时崩溃吗?
9
它可以编译,但是可以链接吗?
—
Mooing Duck