473,508 Members | 2,380 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

delete [] of Derived objects through Base object which has virtualdtor

Suppose

class Base
{
public:
virtual ~Test() { ... }
// ...
};

class Derived : public Base
{
public:
virtual ~Derived() { ... }
// ...
};

int main()
{
Base* base_ptr = new Derived[10]();
delete [] base_ptr;
return EXIT_SUCCESS;
}

If the Base class dtor is not not virtual, 'delete [] base_ptr' has
undefined behaviour.

Will 'delete [] base_ptr' call each Derived class dtor because the
Base::~Base() is virtual ? Is the deletion in the above code valid ?.
Or does this also invoke undefined behaviour ?

Kindly clarify.

Thanks
V.Subramanian
Jun 27 '08 #1
12 2681
Sam
su**************@yahoo.com, India writes:
Suppose

class Base
{
public:
virtual ~Test() { ... }
// ...
};
No, we can't suppose that. This is not a valid C++ class definition.

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (GNU/Linux)

iD8DBQBIFprDx9p3GYHlUOIRAoPKAJ4wfi5RLzo/ysrMPMMYrWm49EVAEQCffZbw
HqpoXHjs6UC/qKzu2a8t+pc=
=Jpso
-----END PGP SIGNATURE-----

Jun 27 '08 #2
su**************@yahoo.com wrote:
Suppose

class Base
{
public:
virtual ~Test() { ... }
Did you mean
virtual ~Base() { /*...*/ }
here?
// ...
};

class Derived : public Base
{
public:
virtual ~Derived() { ... }
// ...
};

int main()
{
Base* base_ptr = new Derived[10]();
delete [] base_ptr;
return EXIT_SUCCESS;
}

If the Base class dtor is not not virtual, 'delete [] base_ptr' has
undefined behaviour.

Will 'delete [] base_ptr' call each Derived class dtor because the
Base::~Base() is virtual ? Is the deletion in the above code valid ?.
Or does this also invoke undefined behaviour ?
If Base is correct with a proper virtual Base destructor (and not Test
destructor which is invalid) I believe this is well formed code.

--
Jim Langston
ta*******@rocketmail.com
Jun 27 '08 #3
Jim Langston wrote:
su**************@yahoo.com wrote:
>Suppose

class Base
{
public:
virtual ~Test() { ... }

Did you mean
virtual ~Base() { /*...*/ }
here?
>// ...
};

class Derived : public Base
{
public:
virtual ~Derived() { ... }
// ...
};

int main()
{
Base* base_ptr = new Derived[10]();
delete [] base_ptr;
return EXIT_SUCCESS;
}

If the Base class dtor is not not virtual, 'delete [] base_ptr' has
undefined behaviour.

Will 'delete [] base_ptr' call each Derived class dtor because the
Base::~Base() is virtual ? Is the deletion in the above code valid ?.
Or does this also invoke undefined behaviour ?

If Base is correct with a proper virtual Base destructor (and not Test
destructor which is invalid) I believe this is well formed code.
Well formed -- maybe. But the code has undefined behavior as per [5.3.5/3]:

... 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.
Best

Kai-Uwe Bux
Jun 27 '08 #4
On Apr 29, 4:32 am, "subramanian10...@yahoo.com, India"
<subramanian10...@yahoo.comwrote:
Suppose
class Base
{
public:
virtual ~Test() { ... }
// ...
};
class Derived : public Base
{
public:
virtual ~Derived() { ... }
// ...
};
int main()
{
Base* base_ptr = new Derived[10]();
delete [] base_ptr;
return EXIT_SUCCESS;
}
If the Base class dtor is not not virtual, 'delete []
base_ptr' has undefined behaviour.
Will 'delete [] base_ptr' call each Derived class dtor because
the Base::~Base() is virtual ? Is the deletion in the above
code valid ?. Or does this also invoke undefined behaviour ?
As Kai-Uwe has pointed out, it is undefined behavior. More
generally, although the compiler will tranquilly convert
Derived* to Base* even if Derived* points to an array (because
it cannot know this), the resulting pointer can only be used as
a pointer to the first individual object. In you case, for
example, no only is the delete[] undefined behavior, but any use
of base_ptr to access the allocated array (e.g. base_ptr[1])
would be as well.

In general, don't use array new; prefer std::vector. And don't
try to make array elements polymorphic; it doesn't work. (Array
elements are values, and polymorphism only works through
pointers or references. If you need an array of polymorphic
types, you must use std::vector< Base* >, allocating and
deallocating each one manually.)
--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Jun 27 '08 #5
James Kanze wrote:
On Apr 29, 4:32 am, "subramanian10...@yahoo.com, India"
<subramanian10...@yahoo.comwrote:
>Suppose
>class Base
{
public:
virtual ~Test() { ... }
// ...
};
>class Derived : public Base
{
public:
virtual ~Derived() { ... }
// ...
};
>int main()
{
Base* base_ptr = new Derived[10]();
delete [] base_ptr;
return EXIT_SUCCESS;
}
>If the Base class dtor is not not virtual, 'delete []
base_ptr' has undefined behaviour.
>Will 'delete [] base_ptr' call each Derived class dtor because
the Base::~Base() is virtual ? Is the deletion in the above
code valid ?. Or does this also invoke undefined behaviour ?

As Kai-Uwe has pointed out, it is undefined behavior. More
generally, although the compiler will tranquilly convert
Derived* to Base* even if Derived* points to an array (because
it cannot know this), the resulting pointer can only be used as
a pointer to the first individual object. In you case, for
example, no only is the delete[] undefined behavior, but any use
of base_ptr to access the allocated array (e.g. base_ptr[1])
would be as well.

In general, don't use array new; prefer std::vector. And don't
try to make array elements polymorphic; it doesn't work. (Array
elements are values, and polymorphism only works through
pointers or references. If you need an array of polymorphic
types, you must use std::vector< Base* >, allocating and
deallocating each one manually.)
I understand what you are saying, but I don't understand why. Why should a
pointer from a std::vector<Base*be treated any different than a pointer
from Base*[] ? You state that array elements are values, but aren't the
members of containers values also? And don't most implementations of
std::vector hold their data in arrays?

It seems totally... non-intuitive and wrong to me. Can you perhaps point to
where in the standard this is stated? This is something I'm going to have
to get my head around, and right now it's just not doing it.

Thanks.

--
Jim Langston
ta*******@rocketmail.com
Jun 27 '08 #6
Jim Langston wrote:
James Kanze wrote:
>On Apr 29, 4:32 am, "subramanian10...@yahoo.com, India"
<subramanian10...@yahoo.comwrote:
>>Suppose
>>class Base
{
public:
virtual ~Test() { ... }
// ...
};
>>class Derived : public Base
{
public:
virtual ~Derived() { ... }
// ...
};
>>int main()
{
Base* base_ptr = new Derived[10]();
delete [] base_ptr;
return EXIT_SUCCESS;
}
>>If the Base class dtor is not not virtual, 'delete []
base_ptr' has undefined behaviour.
>>Will 'delete [] base_ptr' call each Derived class dtor because
the Base::~Base() is virtual ? Is the deletion in the above
code valid ?. Or does this also invoke undefined behaviour ?

As Kai-Uwe has pointed out, it is undefined behavior. More
generally, although the compiler will tranquilly convert
Derived* to Base* even if Derived* points to an array (because
it cannot know this), the resulting pointer can only be used as
a pointer to the first individual object. In you case, for
example, no only is the delete[] undefined behavior, but any use
of base_ptr to access the allocated array (e.g. base_ptr[1])
would be as well.

In general, don't use array new; prefer std::vector. And don't
try to make array elements polymorphic; it doesn't work. (Array
elements are values, and polymorphism only works through
pointers or references. If you need an array of polymorphic
types, you must use std::vector< Base* >, allocating and
deallocating each one manually.)

I understand what you are saying, but I don't understand why. Why
should a pointer from a std::vector<Base*be treated any different
than a pointer from Base*[] ? You state that array elements are
values, but aren't the members of containers values also? And don't
most implementations of std::vector hold their data in arrays?

It seems totally... non-intuitive and wrong to me. Can you perhaps
point to where in the standard this is stated? This is something I'm
going to have to get my head around, and right now it's just not
doing it.
I found it. 5.3.5.3

Quote: 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. 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.

--
Jim Langston
ta*******@rocketmail.com
Jun 27 '08 #7
* Kai-Uwe Bux <jkherci...@gmx.netwrote:
subramanian10...@yahoo.com wrote:
Well formed -- maybe. But the code has undefined behavior as per [5.3.5/3]:

... 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.
I do not know about static and dynamic type.
Please give me an example so that I can understand them.

Thanks
V.Subramanian
Jun 27 '08 #8
su**************@yahoo.com, India wrote:
* Kai-Uwe Bux <jkherci...@gmx.netwrote:
>>subramanian10...@yahoo.com wrote:
>Well formed -- maybe. But the code has undefined behavior as per [5.3.5/3]:

... 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.

I do not know about static and dynamic type.
Please give me an example so that I can understand them.
class Base
{
public:
virtual ~Base() {}
};

class Derived : public Base
{};

int main()
{
Base* p = new Derived(); // static type of p is "pointer to Base"
// dynamic type of p is "pointer to Derived"
}

Jun 27 '08 #9
This is actually a response to the post you're responding to,
but since I cannot see it...

Jim Langston wrote:
Jim Langston wrote:
James Kanze wrote:
On Apr 29, 4:32 am, "subramanian10...@yahoo.com, India"
<subramanian10...@yahoo.comwrote:
Suppose
In general, don't use array new; prefer std::vector. And don't
try to make array elements polymorphic; it doesn't work. (Array
elements are values, and polymorphism only works through
pointers or references. If you need an array of polymorphic
types, you must use std::vector< Base* >, allocating and
deallocating each one manually.)
I understand what you are saying, but I don't understand why. Why
should a pointer from a std::vector<Base*be treated any different
than a pointer from Base*[] ? You state that array elements are
values, but aren't the members of containers values also? And don't
most implementations of std::vector hold their data in arrays?
Think about how you index into an array. And what pointer
arithmetic (which is how indexing is implemented) would mean if
you had to take into account the dynamic size. How would you
find p[1] without knowing the size of p[0]? And in the case of
p[2], what should be multiplied by 2, if p[0] and p[1] have
different sizes.

The problem here in C++ (which it inherits from C) is that even
at the user level, it makes the pointer arithmetic evident, and
doesn't distinguish between pointers to a single object, and
pointers to the first element in an array. Some of the things
you can do with a pointer (i.e. convert from Derived* to Base*)
only make sense for single objects, and other (anything
involving pointer arithmetic) only makes sense if the pointer is
in fact the address of an array.
It seems totally... non-intuitive and wrong to me. Can you perhaps
point to where in the standard this is stated? This is something I'm
going to have to get my head around, and right now it's just not
doing it.
I found it. 5.3.5.3
Quote: 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. 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.
That covers the delete. Something like:

struct Base
{
virtual ~Base() {}
int i ; // Take up some room.
virtual void function() ;
}

struct Derived : Base
{
int j ; // Ensure that Derived is bigger than
// Base.
virtual void function() ;
} ;

Base* p = new Derived[ 20 ] ;
++ p ;
p->function() ;

is also illegal. It can't work; there's no way to implement it
so that it does work (within the usual C++ memory model). But
finding why in the standard... It's very, very indirect, but I
suppose that the definition of pointer addition (++ is defined
in terms of addition) would cover it: "When an expression that
has integral type is added to or subtracted from a pointer, the
result has the type of the pointer operand. If the pointer
operand points to an element of an array object,[...]" In this
case, the pointer points to a Base subobject, and that Base
subobject is NOT an element of an array object. (The elements
of the array object are all Derived.) I'd prefer something more
explicit, but I think that the intent is clear.

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Jun 27 '08 #10
Barry wrote:
su**************@yahoo.com, India wrote:
>* Kai-Uwe Bux <jkherci...@gmx.netwrote:
>>>subramanian10...@yahoo.com wrote:
>>Well formed -- maybe. But the code has undefined behavior as per
[5.3.5/3]:

... 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.

I do not know about static and dynamic type.
Please give me an example so that I can understand them.

class Base
{
public:
virtual ~Base() {}
};

class Derived : public Base
{};

int main()
{
Base* p = new Derived(); // static type of p is "pointer to Base"
// dynamic type of p is "pointer to Derived"
}
Hello,

in the above example, what will happen if we add 'delete p;' at the end
of main(). What will be deleted ? Only the base class part or both base
and derived part of instantied object ?

thanks

Xavier
Jun 27 '08 #11
xavier wrote:
Barry wrote:
>>
class Base
{
public:
virtual ~Base() {}
};

class Derived : public Base
{};

int main()
{
Base* p = new Derived(); // static type of p is "pointer to Base"
// dynamic type of p is "pointer to Derived"
}

Hello,

in the above example, what will happen if we add 'delete p;' at the end
of main(). What will be deleted ? Only the base class part or both base
and derived part of instantied object ?
Both.

--
Ian Collins.
Jun 27 '08 #12
On May 13, 12:04 am, xavier <xavierwrote:
class Base
{
public:
virtual ~Base() {}
};
class Derived : public Base
{};
int main()
{
Base* p = new Derived(); // static type of p is "pointer to Base"
// dynamic type of p is "pointer to Derived"
}
in the above example, what will happen if we add 'delete p;'
at the end of main(). What will be deleted ? Only the base
class part or both base and derived part of instantied object
?
Objects are deleted, not parts of objects. Either the code has
undefined behavior (and anything can happen), or delete will
delete the entire object. (In this case, of course, it is the
lattern.)

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Jun 27 '08 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
5387
by: Ian McBride | last post by:
(was: delete() confusion) I have a class with multiple base classes. One of these base classes (base1) has its own new/delete operators and nothing else. Another base class (base 2) has a...
9
4765
by: justanotherguy63 | last post by:
Hi, I am designing an application where to preserve the hierachy and for code substitability, I need to pass an array of derived class object in place of an array of base class object. Since I...
1
16217
by: ypjofficial | last post by:
Dear All, According to OOPs , a base class pointer can to point to derived class object....call this as fact1 But somehow I am not comfortable while understanding this concept. The explanaition...
10
3297
by: Bhan | last post by:
Using Ptr of derived class to point to base class and viceversa class base { .... } class derived : public base { .... }
5
1940
by: Michael | last post by:
Hi, Could you tell me whether the following two statement are the same? Derived class is derived from Base class. 1. Base* ptr1; 2. Derived * ptr2; Does it mean ptr1 is the same as ptr2?
3
1636
by: Nindi | last post by:
On comp.lang.c++.moderated http://groups.google.co.uk/group/comp.lang.c++.moderated/browse_thread/thread/8250715711da7760?hl=en the following question was posted ...
1
1618
by: Gonçalo Rodrigues | last post by:
Hi all, I am a little confused about the delete operator, so I have a question. Suppose we have something like class Base { public: void* operator new(std::size_t size); void operator...
3
1607
by: Filimon Roukoutakis | last post by:
Dear all, assuming that through a mechanism, for example reflexion, the Derived** is known explicitly. Would it be legal (and "moral") to do this conversion by a cast (probably reinterpret would...
10
3569
by: Dom Jackson | last post by:
I have a program which crashes when: 1 - I use static_cast to turn a base type pointer into a pointer to a derived type 2 - I use this new pointer to call a function in an object of the...
0
7321
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7377
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7036
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7489
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
5047
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4705
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3191
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
1
762
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
414
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.