原帖由 yulc 于 2007-1-12 16:14 发表
Base *p = new Derived[2];
可能是编译器在new数组时,隐含了计算new出来数组大小的工作.
这样强制转换后,由于子类比基类多出一个int字节, 所以在delete[]时出错了.
原帖由 happyness 于 2007-1-12 12:40 发表
下面这段代码,在Linux下用g++编译后运行时core dump。
请各位大侠看看是什么原因,多谢!
[code]
#include <iostream>
class Base
{
public:
Base () {}
virtual ~Base () {}
};
class ...
In the second alternative (delete array) if the dynamic type of the
object to be deleted differs from its static type, the behavior is undefined.73)
--------ISO/IEC 14882:1998 5.35
原帖由 lnfxcf 于 2007-1-12 17:45 发表
那为什么delete p;就没有问题?
In the first alternative (delete object), if the static type of the operand is different from its dynamic type, the
static type shall be a base class of the operand’s dynamic type and the static type shall have a virtual
destructor or the behavior is undefined.
--------ISO/IEC 14882:1998 5.35
原帖由 lnfxcf 于 2007-1-12 17:45 发表
那为什么delete p;就没有问题?
原帖由 清汤挂面 于 2007-1-30 20:58 发表
呵呵,这个是因为在做数组析构的时候,编译器会对每个元素都做一次析构,由于代码中写的是基类的指针,因此,编译器在计算每个元素的偏移的时候,是按照基类的大小来计算的。因此,第一个元素的析构函数可以被正 ...
欢迎光临 Chinaunix (http://bbs.chinaunix.net/) | Powered by Discuz! X3.2 |