473,545 Members | 2,688 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C++ Objects, Stack or Heap? [Noob question]

In the following C++ class,

MyClass{
// Members
}
From which I create two objects (using the default constructor),
(1) MyClass *object1 = new MyClass(); // Stack
(2) MyClass object2 = MyClass(); // Stack or Heap?

Are both objects (1) and (2) created on the heap or is (1) only? I suspect
this is the case, but I'm not 100% sure because I have not read this
anywhere.

Thanks,

- Olumide

Jul 22 '05 #1
14 8190
Olumide wrote:
In the following C++ class,

MyClass{
// Members
}
From which I create two objects (using the default constructor),
(1) MyClass *object1 = new MyClass(); // Stack
(2) MyClass object2 = MyClass(); // Stack or Heap?

Are both objects (1) and (2) created on the heap or is (1) only? I suspect
this is the case, but I'm not 100% sure because I have not read this
anywhere.

Thanks,

- Olumide


The MyClass *object1 pointer is created on the stack, but the object it
points to is created on the heap. That is, the pointer is automatically
destroyed, but the object on the heap is not (necessitating "delete
object1", that is deleting the object on the heap object1 points to).

MyClass object2 is an object created on the stack.

So, creating many (large) objects like object2 can lead to stack-overflow.

Baalbek

Jul 22 '05 #2
Olumide wrote:
In the following C++ class,

class MyClass{
// Members
};
From which I create two objects (using the default constructor),
(1) MyClass *pobject1 = new MyClass(); // Free Storage
(2) MyClass object2 = MyClass(); // Automatic Storage

Are both objects (1) and (2) created on the heap or is (1) only?
I suspect this is the case,
but I'm not 100% sure because I have not read this anywhere.


You are wrong either way.
Storage is allocated from *free storage* for the object
to which pobject1 points in the first case and
storage is allocated from *automatic storage* for object2
in the second case.

In the *typical implementation* ,
the *program stack* is used for automatic storage and
a *free list* is used to manage free storage.
The whimsical term *heap* is a pun used by IBM programmers
to contrast their implementation of a free list
with a stack data structure.
Jul 22 '05 #3
You area Java guy huh? :-P

Better that you read something like "Thinking in C++" freely available
on the web. Your ideas about C++ are somewhat confused (by Java).

From which I create two objects (using the default constructor),
(1) MyClass *object1 = new MyClass(); // Stack
^^^^ stack ^^^^ heap

^^^ an object

^^^ a pointer,not an object

^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ ^^^^^^^^^^^
remember to do
delete object1;
at a certain point, below, when you don't need it anymore. You have no
garbage collector in C++!!

(2) MyClass object2 = MyClass(); // Stack or Heap?


^^^^ stack ^^^^ stack
^^^ an object
^^^ an object (temporary and
immediately destroyed)
^^^ value of object copied from the temporary on the right

^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ ^^ DON'T DO THIS (2) STUFF IN C++!!
do simply:
MyClass object2(....pos sible params...);

Jul 22 '05 #4
> DON'T DO THIS (2) STUFF IN C++!!
I always do it with POD types.

For instance, Microgay, opps I mean Microsoft, have the
likes of the following in their documentation:

FIND_DATA find_data;
memset(&find_da ta,sizeof(FIND_ DATA),0);
While I, being a proficient C++ programmer, do:

FIND_DATA find_data = FIND_DATA();
Benefits of my method:

A) You don't mess with padding, which I believe is taboo...

B) If you have any pointers in there, then they'll get the
null pointer value, as opposed to simply "all bits zero".

C) YOu don't have the overhead of calling memset.
2 of my benefits are moot with Windows because:

A) You're allowed mess with padding
B) The null pointer value *is* "all bits zero"

But still, you don't have to call memset.

After that, the main advantage is that my code is fully
portable!

-JKop
Jul 22 '05 #5

While I, being a proficient C++ programmer, do:

FIND_DATA find_data = FIND_DATA();

Its a bit early on a Sunday for me to remember the distinction between
default initialization and the other sort, but the line of code
above, isn't it the same as

FIND_DATA find_data;

or for that matter....
FIND_DATA find_data( FIND_DATA() );

The original requires that you have a assignment operator, whereas
the second form does not. ( Well, I suppose the last one requires you
have a copy constructor).

yawn..
Jul 22 '05 #6
Dave Townsend posted:

While I, being a proficient C++ programmer, do:

FIND_DATA find_data = FIND_DATA();

Its a bit early on a Sunday for me to remember the distinction between
default initialization and the other sort, but the line of code
above, isn't it the same as

FIND_DATA find_data;

or for that matter....
FIND_DATA find_data( FIND_DATA() );


BULLSHIT.

Okay here goes:

int i;
char* p_blah;

Right now those two variables contain white noise, no particular value. A
piece of memory was just allocated, it wasn't zeroed.

struct Poo
{
int i;
char* p_blah;
};

Poo black;
Right now, "black.i" and "black.p_bl ah" contain white noise.

Here's how to get things set to their default value:

int i = int();
char* p_blah = char*();

Poo black = Poo();
Note that the above are all POD types.

When you're dealing with classes, then:

std::string k;
std::string k = string();

are identical, because the Constructor takes over.

The original requires that you have a assignment operator, whereas
the second form does not. ( Well, I suppose the last one requires you
have a copy constructor).


As regards assignment operator... BULLSHIT, it's not involved at all.

std::string k = std::string();

is identical in every way to:

std::string k( std::string() );

As regards Copy Constructor, you're correct. If there's no copy contructor
defined, then the miranda one takes over.
If there's a copy constructor defined but it's private, then it doesn't
work.

So if you do:

FIND_DATA find_data;

Then it contains white noise. While if you do:

FIND_DATA find_data = FIND_DATA();

Then everything gets their default values, which for ints is 0, and for
pointers is the NULL pointer value, which may or may not be "all bits zero".
-JKop
Jul 22 '05 #7
JKop wrote:
While I, being a proficient C++ programmer, do:

FIND_DATA find_data = FIND_DATA();


Doesn't this have a *very bad* performance overhead?

You are first creating a temporary FIND_DATA type (the one on the right
side of = sign), so a space is created on the stack for it and then its
memory is zeroed.

Then you create a space also for the one on the left side and you call
the (implicit) copy constructor to copy the one on the right to the one
on the left, member by member (so there are N reads and N writes which
are just to copy zeroes...)

Seems very bad to me, compared to the Microsoft proposed way of just
writing zeroes once.

Or you can guarantee to me that some of these steps are optimized away
because of some specific known optimizations I am not aware of? Please tell.
Jul 22 '05 #8
JKop wrote:
Okay here goes:

int i;
char* p_blah;

Right now those two variables contain white noise, no particular value. A
piece of memory was just allocated, it wasn't zeroed.

struct Poo
{
int i;
char* p_blah;
};

Poo black;
Right now, "black.i" and "black.p_bl ah" contain white noise.

:-) Unless they are declared global, static in a function, or in a
namespace.

Here's how to get things set to their default value:

As it is written in TC++PL3:

"void f(double d)
{
int j = int() ; // default int value
complex z = complex() ; // default complex value
// ...
}

The value of an explicit use of the constructor for a built-in
type is 0 converted to that type (§4.9.5).

Thus, int() is another way of writing 0. For a user-defined
type T, T() is defined by the default constructor (§10.4.2), if any.

The use of the constructor notation for built-in types is particularly
important when writing templates. Then, the programmer does not know
whether a template parameter will refer to a built-in type or a
user-defined type (§16.3.4, §17.4.1.2)."
So basically, its importance for built in types is when they are used
with templates.

int i = int();
char* p_blah = char*();

What about this:
int i=0;

char *p=0;

Poo black = Poo();

This one is using the provided constructor (in this case the built in),
which does not necessarily initialise to 0.

For example:
struct Poo
{
int i;
char *p;

Poo() { i=1, p=new char[10]; }
};
int main()
{
Poo b;
}

--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #9
mbcf78 wrote:
JKop wrote:
While I, being a proficient C++ programmer, do:

FIND_DATA find_data = FIND_DATA();
Doesn't this have a *very bad* performance overhead?


No.
You are first creating a temporary FIND_DATA type
(the one on the right side of = sign),
so a space is created on the stack for it and then its memory is zeroed.

Then you create a space also for the one on the left side and you call
the (implicit) copy constructor to copy the one on the right to the one
on the left, member by member
No.
A good optimizing C++ compiler will call the default constructor
to initialize find_data directly. The copy constructor will be elided.
(so there are N reads and N writes which are just to copy zeroes...)

Seems very bad to me
compared to the Microsoft proposed way of just writing zeroes once.

Or you can guarantee to me that some of these steps are optimized away
because of some specific known optimizations I am not aware of?
This optimization is well known.
I used Google

http://www.google.com/
to search for

+"copy constructor" +"elided" +"C++"

and found lots of stuff.
Please tell.

Jul 22 '05 #10

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

Similar topics

10
2094
by: Matt Hollingsworth | last post by:
Hello, Very new to python, so a noob question. When I've written stuff in JavaScript or MEL in the past, I've always adopted the variable naming convention of using a $ as the first character (no, I don't use perl, never have). Not possible in python. What are some good options that people commonly use so that they can easily and quickly...
8
2134
by: Ivan Shevanski | last post by:
Alright heres another noob question for everyone. Alright, say I have a menu like this. print "1. . .Start" print "2. . .End" choice1 = raw_input("> ") and then I had this to determine what option.
5
1388
by: Anders K. Jacobsen [DK] | last post by:
Hey. Is it possible somehow to persist the call stack, heap, program data...everything. Then at a later time load it again and continue work. The idea is actually to send it all over network in a pervasive research project, so that one program can be used on one computer and "instantly" continue on another.. Im not looking for a solution,...
5
3633
by: Gomaw Beoyr | last post by:
Hello Is there any explanation why Microsoft chose to implement arrays as objects allocated on the heap instead of structs allocated on the stack? For "mathematical stuff", one normally wishes to avoid unnecessary garbage collection, but that is exactly what's going to happen if a lot of arrays, matrixes etc are allocated on the heap.
2
1901
by: Dan McCollick | last post by:
Hi All, Noob question that I can not seem to figure out: I am trying to implement a screenscraper to pull data from two seperate websites, here is some test code so far: public static void Main(string args) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false);
0
897
by: Fabiano Sidler | last post by:
Hi folks! For getting a plan how a stack-based VM like Python works, I added a function that prints out the current object stack. Unfortunately, it crashes the VM. Could someone here take a look at it? What's wrong with it?: --- snip --- static PyObject * sys_stack(PyObject *self)
12
3223
by: presencia | last post by:
Hi all, I am still in the process of lerning how to write decent C++ code. I will appreciate any good advice or corrections. I have two questions, a technical one and one for advice for how to design my code. 1. I have read somewhere (can't remember, must have been some tutorial page) that objects allocated on the heap can only be accessed...
0
7502
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7946
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
7791
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
1
5360
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3491
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3470
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1921
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1045
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
744
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.