473,386 Members | 1,796 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

delete []

Guess that it should be "delete []p", not "delete p", but not sure since it
has only one element( [1] ). Is it right?

int* p = new int[1];
...
delete []p;
Jul 22 '05 #1
6 1712

"pout" <po**@work.com> wrote in message
news:A5******************@bgtnsc04-news.ops.worldnet.att.net...
Guess that it should be "delete []p", not "delete p", but not sure since it has only one element( [1] ). Is it right?

int* p = new int[1];
...
delete []p;


Correct. ALWAYS use the delete [] form if you used the new [] form.

-Howard
Jul 22 '05 #2

"pout" <po**@work.com> wrote in message
news:A5******************@bgtnsc04-news.ops.worldnet.att.net...
Guess that it should be "delete []p", not "delete p", but not sure since it has only one element( [1] ). Is it right?

int* p = new int[1];
...
delete []p;


Correct. ALWAYS use the delete [] form if you used the new [] form.

-Howard
Jul 22 '05 #3
In message <c5********@dispatch.concentric.net>, Howard
<al*****@hotmail.com> writes

"pout" <po**@work.com> wrote in message
news:A5******************@bgtnsc04-news.ops.worldnet.att.net...
Guess that it should be "delete []p", not "delete p", but not sure since

it
has only one element( [1] ). Is it right?

int* p = new int[1];
...
delete []p;


Correct. ALWAYS use the delete [] form if you used the new [] form.

Better yet, ask yourself *why* you are using such a low-level construct
as new[] in the first place. C++ provides much better tools for handling
dynamic arrays.

--
Richard Herring
Jul 22 '05 #4

"Richard Herring" <ju**@[127.0.0.1]> wrote in message
news:QE**************@baesystems.com...
In message <c5********@dispatch.concentric.net>, Howard
<al*****@hotmail.com> writes

"pout" <po**@work.com> wrote in message
news:A5******************@bgtnsc04-news.ops.worldnet.att.net...
Guess that it should be "delete []p", not "delete p", but not sure
sinceit
has only one element( [1] ). Is it right?

int* p = new int[1];
...
delete []p;


Correct. ALWAYS use the delete [] form if you used the new [] form.

Better yet, ask yourself *why* you are using such a low-level construct
as new[] in the first place. C++ provides much better tools for handling
dynamic arrays.

--
Richard Herring


Huh? Using new[] is the preferred way to create dynamic arrays. Perhaps
you're thinking of malloc when you say "low-level"? Or perhaps you're
referring to using std:vector instead? That's admittedly a better way to go
in many cases, but it would help the OP to know that option, instead of just
saying there are "better tools".

-Howard


Jul 22 '05 #5
In message <c5********@dispatch.concentric.net>, Howard
<al*****@hotmail.com> writes

"Richard Herring" <ju**@[127.0.0.1]> wrote in message
news:QE**************@baesystems.com...
In message <c5********@dispatch.concentric.net>, Howard
<al*****@hotmail.com> writes
>
>"pout" <po**@work.com> wrote in message
>news:A5******************@bgtnsc04-news.ops.worldnet.att.net...
>> Guess that it should be "delete []p", not "delete p", but not suresince >it
>> has only one element( [1] ). Is it right?
>>
>> int* p = new int[1];
>> ...
>> delete []p;
>>
>>
>
>Correct. ALWAYS use the delete [] form if you used the new [] form.
> Better yet, ask yourself *why* you are using such a low-level construct
as new[] in the first place. C++ provides much better tools for handling
dynamic arrays.


Huh? Using new[] is the preferred way to create dynamic arrays.


Personally, I prefer using the wheel provided by the library
implementors to reinventing my own.
Perhaps
you're thinking of malloc when you say "low-level"?
No, that's even lower level. It isn't even type-safe, and doesn't call
constructors.
Or perhaps you're
referring to using std:vector instead?
Naturally. Or possibly std::string, depending on what he wants to do
with it. Or maybe a smart pointer, since he apparently only wants one of
them. Or maybe what he really needs is not an array of any kind, but a
std::list or a std::set, or ...
That's admittedly a better way to go
in many cases, but it would help the OP to know that option, instead of just
saying there are "better tools".

My advice ("stop and think why I would do this") stands, and is worth
every penny he paid for it.

(I don't do homework problems, either.)
--
Richard Herring
Jul 22 '05 #6

"Richard Herring" <ju**@[127.0.0.1]> wrote in message
news:+6**************@baesystems.com...

My advice ("stop and think why I would do this") stands, and is worth
every penny he paid for it.

(I don't do homework problems, either.)
--
Richard Herring


LOL

Jul 22 '05 #7

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

Similar topics

2
by: Dave | last post by:
Hello all, In the code below, I see the following output: base::operator new(size_t, int) base::base() base::~base() base::operator delete(void *) In the case of an exception being thrown...
1
by: Nimmi Srivastav | last post by:
There's a rather nondescript book called "Using Borland C++" by Lee and Mark Atkinson (Que Corporation) which presents an excellent discussion of overloaded new and delete operators. In fact there...
3
by: Nimmi Srivastav | last post by:
There's a rather nondescript book called "Using Borland C++" by Lee and Mark Atkinson (Que Corporation) which presents an excellent discussion of overloaded new and delete operators. I am...
1
by: Douglas Peterson | last post by:
class Allocator { public: virtual void * Alloc(size_t) = 0; virtual void * Free(void*) = 0; }; class Object { public:
2
by: Dave | last post by:
Hello all, I'd like to find a source on the web that discusses, in a comprehensive manner and in one place, everything about new / delete. It should include overloading operator new, the new...
3
by: silver360 | last post by:
Hello, I'm trying to create a basic Heap manager and i have some question about new/delete overloading. The following code give me this output : >> $./heap >> registered : 0x804d098 >>...
9
by: rohits123 | last post by:
I have an overload delete operator as below ////////////////////////////////// void operator delete(void* mem,int head_type) { mmHead local_Head = CPRMemory::GetMemoryHead(head_type);...
10
by: jeffjohnson_alpha | last post by:
We all know that a new-expression, foo* a = new foo() ; allocates memory for a single foo then calls foo::foo(). And we know that void* p = ::operator new(sizeof(foo)) ; allocates a...
15
by: LuB | last post by:
I am constantly creating and destroying a singular object used within a class I wrote. To save a bit of time, I am considering using 'placement new'. I guess we could also debate this decision -...
29
by: =?Utf-8?B?R2Vvcmdl?= | last post by:
Hello everyone, I remembered delete is implemented through operator overloading, but I am not quite clear. Could anyone recommend some links about how delete is implemented so that I can...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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...

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.