What is the best alternative for realloc in C++ | | |
Hi,
Can somebody advise me on what is the best alternative for realloc in C++?
Is it safe to "realloc"ate memory allocated using new operator ? | | | | re: What is the best alternative for realloc in C++
Kumar wrote:
[color=blue]
> Hi,
> Can somebody advise me on what is the best alternative for realloc in
> C++?[/color]
What would you need it for?
[color=blue]
> Is it safe to "realloc"ate memory allocated using new operator ?[/color]
No. You can only use realloc on memory that you got from malloc or
realloc. Also, realloc won't work properly with non-pod objects, since
it doesn't care about constructors and destructors. | | | | re: What is the best alternative for realloc in C++
Kumar wrote:
[color=blue]
> Hi,
> Can somebody advise me on what is the best alternative for realloc in
> C++?[/color]
What would you need it for?
[color=blue]
> Is it safe to "realloc"ate memory allocated using new operator ?[/color]
No. You can only use realloc on memory that you got from malloc or
realloc. Also, realloc won't work properly with non-pod objects, since
it doesn't care about constructors and destructors. | | | | re: What is the best alternative for realloc in C++
On 6 Apr 2004 02:12:33 -0700 in comp.lang.c++, rsmkumar@acmet.com
(Kumar) wrote,[color=blue]
>Hi,
>Can somebody advise me on what is the best alternative for realloc in C++?[/color]
std::vector<>::resize()
[color=blue]
>Is it safe to "realloc"ate memory allocated using new operator ?[/color]
Don't use 'new'. | | | | re: What is the best alternative for realloc in C++
On 6 Apr 2004 02:12:33 -0700 in comp.lang.c++, rsmkumar@acmet.com
(Kumar) wrote,[color=blue]
>Hi,
>Can somebody advise me on what is the best alternative for realloc in C++?[/color]
std::vector<>::resize()
[color=blue]
>Is it safe to "realloc"ate memory allocated using new operator ?[/color]
Don't use 'new'. | | | | re: What is the best alternative for realloc in C++
Rolf Magnus wrote:
[color=blue]
> Kumar wrote:
>[color=green]
>>Is it safe to "realloc"ate memory allocated using new operator ?[/color]
>
>
> No. You can only use realloc on memory that you got from malloc or
> realloc.[/color]
....or calloc().
[color=blue]
> Also, realloc won't work properly with non-pod objects, since
> it doesn't care about constructors and destructors.
>[/color]
Likewise with malloc(), calloc(), and free(), which is why these should
only be used when absolutely necessary, and only by people who really
know what they are doing.
-Kevin
--
My email address is valid, but changes periodically.
To contact me please use the address from a recent posting. | | | | re: What is the best alternative for realloc in C++
Rolf Magnus wrote:
[color=blue]
> Kumar wrote:
>[color=green]
>>Is it safe to "realloc"ate memory allocated using new operator ?[/color]
>
>
> No. You can only use realloc on memory that you got from malloc or
> realloc.[/color]
....or calloc().
[color=blue]
> Also, realloc won't work properly with non-pod objects, since
> it doesn't care about constructors and destructors.
>[/color]
Likewise with malloc(), calloc(), and free(), which is why these should
only be used when absolutely necessary, and only by people who really
know what they are doing.
-Kevin
--
My email address is valid, but changes periodically.
To contact me please use the address from a recent posting. | | | | re: What is the best alternative for realloc in C++
David Harmon wrote:
[color=blue]
>
> Don't use 'new'.
>[/color]
Reasonable advice, but just to be perfectly clear:
1) Don't use malloc() (and friends) when 'new' can do the job.
2) Don't use malloc() or 'new' when containers or automatic variables
can do the job.
3) When explicit memory management is necessary, try to use smart
pointers to make it easier and safer.
4) If you do have to use any form of explicit memory management, use
caution.
-Kevin
--
My email address is valid, but changes periodically.
To contact me please use the address from a recent posting. | | | | re: What is the best alternative for realloc in C++
David Harmon wrote:
[color=blue]
>
> Don't use 'new'.
>[/color]
Reasonable advice, but just to be perfectly clear:
1) Don't use malloc() (and friends) when 'new' can do the job.
2) Don't use malloc() or 'new' when containers or automatic variables
can do the job.
3) When explicit memory management is necessary, try to use smart
pointers to make it easier and safer.
4) If you do have to use any form of explicit memory management, use
caution.
-Kevin
--
My email address is valid, but changes periodically.
To contact me please use the address from a recent posting. | | | | re: What is the best alternative for realloc in C++
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Kumar wrote:[color=blue]
> Hi,
> Can somebody advise me on what is the best alternative for realloc in C++?
> Is it safe to "realloc"ate memory allocated using new operator ?[/color]
Kumar,
The simple answer is that realloc is nothing more than a fancy version
of malloc, ie new. So if you are working with STL compliant objects &
containers, then simply setting one equal to another will suffice, then
either let the old object go out of scope (if automatic), or delete it.
Evan
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFAc0OVoo/Prlj9GScRApXyAJ0UKj7WWWX5v98AdCdCyrm1fwO4PQCdFJ61
M1vu6exq008FY2XrmEXkrkk=
=4O+j
-----END PGP SIGNATURE----- | | | | re: What is the best alternative for realloc in C++
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Kumar wrote:[color=blue]
> Hi,
> Can somebody advise me on what is the best alternative for realloc in C++?
> Is it safe to "realloc"ate memory allocated using new operator ?[/color]
Kumar,
The simple answer is that realloc is nothing more than a fancy version
of malloc, ie new. So if you are working with STL compliant objects &
containers, then simply setting one equal to another will suffice, then
either let the old object go out of scope (if automatic), or delete it.
Evan
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFAc0OVoo/Prlj9GScRApXyAJ0UKj7WWWX5v98AdCdCyrm1fwO4PQCdFJ61
M1vu6exq008FY2XrmEXkrkk=
=4O+j
-----END PGP SIGNATURE----- | | | | re: What is the best alternative for realloc in C++
Evan Carew wrote:[color=blue]
> malloc, ie new.[/color]
The implication that malloc() and 'new' are equivalent is very wrong.
There are significant differences, for example: malloc() returns NULL on
failure while 'new' throws an exception, malloc() allocates raw memory
while 'new' constructs objects in the allocated space, malloc() is a
single function while 'new' comes in several variants and can be
overloaded or overridden by the programmer.
-Kevin
--
My email address is valid, but changes periodically.
To contact me please use the address from a recent posting. | | | | re: What is the best alternative for realloc in C++
Evan Carew wrote:[color=blue]
> malloc, ie new.[/color]
The implication that malloc() and 'new' are equivalent is very wrong.
There are significant differences, for example: malloc() returns NULL on
failure while 'new' throws an exception, malloc() allocates raw memory
while 'new' constructs objects in the allocated space, malloc() is a
single function while 'new' comes in several variants and can be
overloaded or overridden by the programmer.
-Kevin
--
My email address is valid, but changes periodically.
To contact me please use the address from a recent posting. | | | | re: What is the best alternative for realloc in C++
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Kumar,
I'm sure Kevin means well, but I think you would do well to put his
posts in your filter list. The problem with his post is that most
compiler vendors do indeed use malloc under the hood as the default new
operator's machenery. While many vendors do add additional functionality
to new beside what malloc provides, ultimately, you are interfacing with
the OS's memory machenery, and thus must use its entry points. In the
UNIX world, this happens to be malloc (I can't imagine it would be any
different with MS products).
Evan Carew
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFAdCPmoo/Prlj9GScRAnl5AJ49sHLYuak9OAOLvXGdExJKqn2PrACffZQ2
Pv1ZYvqReZFHmBY1cbdHnQo=
=bC5J
-----END PGP SIGNATURE----- | | | | re: What is the best alternative for realloc in C++
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Kumar,
I'm sure Kevin means well, but I think you would do well to put his
posts in your filter list. The problem with his post is that most
compiler vendors do indeed use malloc under the hood as the default new
operator's machenery. While many vendors do add additional functionality
to new beside what malloc provides, ultimately, you are interfacing with
the OS's memory machenery, and thus must use its entry points. In the
UNIX world, this happens to be malloc (I can't imagine it would be any
different with MS products).
Evan Carew
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFAdCPmoo/Prlj9GScRAnl5AJ49sHLYuak9OAOLvXGdExJKqn2PrACffZQ2
Pv1ZYvqReZFHmBY1cbdHnQo=
=bC5J
-----END PGP SIGNATURE----- | | | | re: What is the best alternative for realloc in C++
"Evan Carew" <tempcarew@pobox.com> wrote[color=blue]
> I'm sure Kevin means well, but I think you would do
> well to put his posts in your filter list.[/color]
That's harsh coming from someone who's posting incorrect advice. 'malloc'
and 'new' are not interchangeable. Period.
[color=blue]
> The problem with his post is that most compiler vendors
> do indeed use malloc under the hood as the default new
> operator's machenery.[/color]
Which is irrelevant to the fact that the two should NEVER be intermixed.
[color=blue]
> While many vendors do add additional functionality to
> new beside what malloc provides, ultimately, you are
> interfacing with the OS's memory machenery, and thus
> must use its entry points.[/color]
That's incorrect. Memory management is shared by the C++ library (for
fine-grained allocations) and the operating system (for the library's
internal use only). A call to 'new' or 'malloc' very rarely results in a
call to an OS system function, and when it does, it's an indirect
consequence.
[color=blue]
> In the UNIX world, this happens to be malloc[/color]
Wrong again. You're really racking up the misses. In UNIX, the fundamental
memory management system call is 'sbrk'. UNIX knows nothing about 'malloc'.
[color=blue]
> (I can't imagine it would be any different with MS products).[/color]
You need more imagination, then. Windows system calls for memory management
are even more convoluted and offer an entire suite of operations on
system-managed heaps, only a small subset of which is used as the
underpinnings of 'malloc' and 'new'.
Next time you arrogantly attack someone like Kevin for posting correct
information, you might want to look things up to avoid making a complete
fool of yourself.
Claudio Puviani | | | | re: What is the best alternative for realloc in C++
"Evan Carew" <tempcarew@pobox.com> wrote[color=blue]
> I'm sure Kevin means well, but I think you would do
> well to put his posts in your filter list.[/color]
That's harsh coming from someone who's posting incorrect advice. 'malloc'
and 'new' are not interchangeable. Period.
[color=blue]
> The problem with his post is that most compiler vendors
> do indeed use malloc under the hood as the default new
> operator's machenery.[/color]
Which is irrelevant to the fact that the two should NEVER be intermixed.
[color=blue]
> While many vendors do add additional functionality to
> new beside what malloc provides, ultimately, you are
> interfacing with the OS's memory machenery, and thus
> must use its entry points.[/color]
That's incorrect. Memory management is shared by the C++ library (for
fine-grained allocations) and the operating system (for the library's
internal use only). A call to 'new' or 'malloc' very rarely results in a
call to an OS system function, and when it does, it's an indirect
consequence.
[color=blue]
> In the UNIX world, this happens to be malloc[/color]
Wrong again. You're really racking up the misses. In UNIX, the fundamental
memory management system call is 'sbrk'. UNIX knows nothing about 'malloc'.
[color=blue]
> (I can't imagine it would be any different with MS products).[/color]
You need more imagination, then. Windows system calls for memory management
are even more convoluted and offer an entire suite of operations on
system-managed heaps, only a small subset of which is used as the
underpinnings of 'malloc' and 'new'.
Next time you arrogantly attack someone like Kevin for posting correct
information, you might want to look things up to avoid making a complete
fool of yourself.
Claudio Puviani | | | | re: What is the best alternative for realloc in C++
Evan Carew wrote:
[color=blue]
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Kumar,
>
> I'm sure Kevin means well, but I think you would do well to put his
> posts in your filter list. The problem with his post is that most
> compiler vendors do indeed use malloc under the hood as the default new
> operator's machenery. While many vendors do add additional functionality
> to new beside what malloc provides, ultimately, you are interfacing with
> the OS's memory machenery, and thus must use its entry points. In the
> UNIX world, this happens to be malloc (I can't imagine it would be any
> different with MS products).
>[/color]
Kumar,
I'm sure Evan means well, but I think you would do well to put his posts
in your filter list. The problem is that he can't grasp simple concepts
like how to post properly (i.e., not top-posting), or the (very
important) differences between malloc() and 'new'. This suggests that
any advice he gives may be dubious at best, and downright dangerous at
worst. I would suggest deferring to the more knowledgeable members of
the group (I'm not including myself in that set). It's not to hard to
figure out who they are -- they are the ones who correct people's
errors, including each others, and don't make ridiculous claims without
backing them up.
Incidentally, the following FAQ entries are relevant to the question at
hand: http://www.parashift.com/c++-faq-lit....html#faq-16.2 http://www.parashift.com/c++-faq-lit....html#faq-16.3 http://www.parashift.com/c++-faq-lit....html#faq-16.5
Any good C++ book or reference can verify everything I said in my
previous post, or I can expand on any or all of them that need
clarification.
-Kevin
--
My email address is valid, but changes periodically.
To contact me please use the address from a recent posting. | | | | re: What is the best alternative for realloc in C++
Evan Carew wrote:
[color=blue]
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Kumar,
>
> I'm sure Kevin means well, but I think you would do well to put his
> posts in your filter list. The problem with his post is that most
> compiler vendors do indeed use malloc under the hood as the default new
> operator's machenery. While many vendors do add additional functionality
> to new beside what malloc provides, ultimately, you are interfacing with
> the OS's memory machenery, and thus must use its entry points. In the
> UNIX world, this happens to be malloc (I can't imagine it would be any
> different with MS products).
>[/color]
Kumar,
I'm sure Evan means well, but I think you would do well to put his posts
in your filter list. The problem is that he can't grasp simple concepts
like how to post properly (i.e., not top-posting), or the (very
important) differences between malloc() and 'new'. This suggests that
any advice he gives may be dubious at best, and downright dangerous at
worst. I would suggest deferring to the more knowledgeable members of
the group (I'm not including myself in that set). It's not to hard to
figure out who they are -- they are the ones who correct people's
errors, including each others, and don't make ridiculous claims without
backing them up.
Incidentally, the following FAQ entries are relevant to the question at
hand: http://www.parashift.com/c++-faq-lit....html#faq-16.2 http://www.parashift.com/c++-faq-lit....html#faq-16.3 http://www.parashift.com/c++-faq-lit....html#faq-16.5
Any good C++ book or reference can verify everything I said in my
previous post, or I can expand on any or all of them that need
clarification.
-Kevin
--
My email address is valid, but changes periodically.
To contact me please use the address from a recent posting. |  | | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,374 network members.
|