473,379 Members | 1,539 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,379 software developers and data experts.

difference b/w using calloc and new

Hi,
I am learning C++ and I have been told that an object can be
created either by using calloc or new. If it is true, can some one
tell me what is the difference b/w using these two function calls.

Dec 11 '07 #1
6 4898
On Dec 11, 4:47 am, mthread <rjk...@gmail.comwrote:
Hi,
I am learning C++ and I have been told that an object can be
created either by using calloc or new. If it is true, can some one
tell me what is the difference b/w using these two function calls.
Please, see

http://www.parashift.com/c++-faq-lit....html#faq-16.4

Browsing the whole FAQ might also be a good idea.

--
Jonathan Mcdougall
Dec 11 '07 #2
On Dec 11, 10:47 am, mthread <rjk...@gmail.comwrote:
I am learning C++ and I have been told that an object can be
created either by using calloc or new. If it is true, can some one
tell me what is the difference b/w using these two function calls.
You've been told wrong. You can't create an object with calloc,
only allocate memory. (In practice, even in C, I've never found
a use for calloc.)

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

Dec 12 '07 #3
On Dec 11, 2:47 pm, mthread <rjk...@gmail.comwrote:
Hi,
I am learning C++ and I have been told that an object can be
created either by using calloc or new. If it is true, can some one
tell me what is the difference b/w using these two function calls.
new is not a function or a library, it is just an operator...

calloc just allocates the memory, where as new allocates the memory
for the object and also calls the constructor to perform
initialization.
yes calloc does set the memory contents with 0, however new perform's
user defined initialization (if provided).
Dec 12 '07 #4
On Dec 12, 1:51 pm, vairav...@gmail.com wrote:
On Dec 11, 2:47 pm, mthread <rjk...@gmail.comwrote:
Hi,
I am learning C++ and I have been told that an object can be
created either by using calloc or new. If it is true, can some one
tell me what is the difference b/w using these two function calls.

new is not a function or a library, it is just an operator...

calloc just allocates the memory, where as new allocates the memory
for the object and also calls the constructor to perform
initialization.
yes calloc does set the memory contents with 0, however new perform's
user defined initialization (if provided).

Hi,
thanx every one for the help.
Dec 12 '07 #5
On Dec 12, 9:47 am, "Alf P. Steinbach" <al...@start.nowrote:
* James Kanze:
On Dec 11, 10:47 am, mthread <rjk...@gmail.comwrote:
I am learning C++ and I have been told that an object can be
created either by using calloc or new. If it is true, can some one
tell me what is the difference b/w using these two function calls.
You've been told wrong. You can't create an object with calloc,
only allocate memory. (In practice, even in C, I've never found
a use for calloc.)
Depends what's meant by "object". In the usual
language-independent meaning of "object" you're right.
However, the standard defines an object as a region of memory,
and goes to pains to specify "class type" whenever it talks
about objects of class type, so as not to confuse them with
objects of non-class type, and in that meaning malloc &
friends allocate objects (although I agree that's probably not
what OP means).
Yes, but even a POD is more than just raw memory, at least if it
has a readable value. Using calloc, you're guaranteed that any
subobjects of integral type have a value of 0, but that's about
it. You still have to initialize pointers and floating point
values before you can access them.
Now, C++ "new" combines two operations: allocation and
initialization, where initialization might involve internally
calling a constructor for each class type object created. You
get either both effects, or none. I.e., if initialization
fails, the allocated memory is deallocated again,
automatically.
Most importantly, initialization takes place. Conceptually (in
my mind, at least), there is a difference between raw memory,
and an object, even if that object is of type int. With
calloc/malloc (and the operator new function), you get raw
memory; with new, you get the object. If the constructor is a
no-op (a trivial constructor), of course, there is no real
difference physically, but I still find it cleaner to think of
it as two different things.
And it has one more useful property, namely that the
corresponding destruction+deallocation operation, C++
"delete", is the operation used by default by automatic
cleanup such as with boost::shared_ptr.
It's the only operation used by most automatic cleanup. (It's
what std::auto_ptr uses, for example.) Except
that which works at a much lower level (e.g. garbage
collection).

The important point, of course, is that if you use calloc, you
must use free (and not delete), and if you use new, you must use
delete. Unless you're using some lower level system which more
or less "pirates" them all.
Implementing all that yourself on top of e.g. malloc would be
very much work for no particular gain, since it's unlikely in
the extreme that you'd be able to achieve the same quality.
It's useful when you want to separate initialization and
allocation, e.g. when implementing something like vector.
Today, of course, unless you're implementing the standard
library, the probability of needing to do this is very, very
small, but back in the old days, when the "standard library" was
iostream, complex, and nothing else, it was standard practice
anytime you implemented your in house vector classes.

Even then, I would use the operator new function, rather than
malloc. I reserve malloc for the implementation of custom
operator new functions (e.g. for debugging---although now that
tools like valgrind are readily available for free, there's
practically no reason to write a debugging operator new anymore
either).
Hence the only reason for using malloc & the like in C++, is
where you need to interface to code that requires this, e.g.
by calling free.
In which case, you have no choice. When you have to, you have
to. Similarly, it's the easiest way (and the only portable way)
to get memory if you're implementing your own replacement global
operator new.

--
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
Dec 12 '07 #6
On Dec 12, 9:51 am, vairav...@gmail.com wrote:
On Dec 11, 2:47 pm, mthread <rjk...@gmail.comwrote:
[...]
yes calloc does set the memory contents with 0, however new perform's
user defined initialization (if provided).
You have to be very careful how you say that. Calloc only sets
all of the bits to 0. It does *not* guarantee that the value
of the objects (even POD objects) corresponds to initialization
with 0. In particular, there is absolutely no guarantee that
pointers in memory returned by calloc are null, or that floating
point values are 0.0.

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

Dec 12 '07 #7

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

Similar topics

27
by: MK | last post by:
I am a newbie. Please help. The following warning is issued by gcc-3.2.2 compiler (pc Linux): ================================================================== read_raw_data.c:51: warning:...
2
nabh4u
by: nabh4u | last post by:
hi friends, i have a probelm with finding the bit difference using xor. i have 2 strings and i have to convert the first tring into another. in order to convert i should get the cost by finding...
13
by: manish sahu | last post by:
difference between calloc() and malloc()
3
by: Tristan Wibberley | last post by:
On Wed, 2008-02-13 at 15:42 -0500, Victor Bazarov wrote: does new char give memory aligned appropriately for any type? -- Tristan Wibberley Any opinion expressed is mine (or else I'm...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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: 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:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.