vote up 1 vote down star

When compiler need to know the size of a C (class) object: For example, when allocating a C on the stack or as a directly-held member of another type

From C++ Coding Standards: 101 Rules, Guidelines, and Best Practices

Does that mean for a heap allocated object, size is not necessary?

Class C;//just forward declaration
C * objc = new C();
flag

1  
Are you asking about C++ or C? Please edit your question to clarify this. – Neil Butterworth Jun 4 at 10:46
3  
Who is "you" in the quote? You as a programmer almost never need to know it. The compiler has. I think the quote is missing context up to the level it is not possible to answer your question. – Suma Jun 4 at 10:47
Based on tags (declaration, definition) this quote tries to explain why sometimes the type needs to be defined, not only declared. You is therefore most likely the compiler. – Suma Jun 4 at 10:53
Apologies for delayed response is the qn ok now? – yesraaj Jun 4 at 11:45
Forward declarations are used in header files where there are no allocations. You must include the full definition of the class before performing an allocation regardless of whether it's on the heap or stack. – Kieveli Jun 4 at 11:52

6 Answers

vote up 3 vote down check

To answer your specific question:

Does that mean for heap allocated object size is not necessary?

Class C;//just forward declaration
C * objc = new C();

C++ will not let you do that.

Even if it could let you perform a 'new' on an incomplete type by magically resolving the size at a later time (I could envision this being technically possible with cooperation from the linker), the attempt will fail at compile time because of at least 2 reasons:

  1. operator new can only be used with complete types. From the C++98 standard 5.3.4 - "[the allocated] type shall be a complete object type, but not an abstract class type or array thereof"

  2. the compiler has no idea what constructors exist (and are accessible), so it would also have to fail for that reason.

link|flag
vote up 0 vote down

The compiler must see the declaration of the class for two reasons: it must know the size it must allocate (as others have already pointed out) but also because the compiler must know how to construct the object: Does it have a default constructor, implicitly defined default constructor, no default constructor? The compiler must know even if the object can be created with a no argument constructor.

link|flag
vote up 0 vote down

No. In order to allocate an object on the heap, you must know the size.

Foo *foo=(Foo *)malloc(sizeof(*foo));
link|flag
The question is tagged C++, not C. – Neil Butterworth Jun 4 at 10:44
This is valid in C++ - for example we see in the source for VS C++ runtime the new operator calls through to malloc for the memory allocation so the size is known implicitly at the time of allocation – 1800 INFORMATION Jun 4 at 10:48
2  
Even here "you" as a programmer do not know the size. It is a compiler who knows it (you ask it and pass the answer to malloc) – Suma Jun 4 at 10:49
Foo *foo=(Foo *)malloc(sizeof(Foo)); Also, just because one compiler simply wraps malloc, doesn't mean another does. Also, if Foo has a constructor you just created a Foo without running it. – Dolphin Jun 4 at 14:15
Usually I assume that if the compiler knows something on my behalf, this is essentially the same as if I had known it, even if I didn't actually print out the value of that thing to the screen. For example we might have any number of local variables for the calculation of a temporary value - you don't have to look at the value in a debugger to say that you "know" that value, it is probably enough to just reference that variable in your code. – 1800 INFORMATION Jun 4 at 20:25
show 1 more comment
vote up 2 vote down

As a programmer, you almost never need to know the size of an object in C++. For example:

class A {
    ...  // member data
};

void f() {
    A a;              // allocate on stack
    A * p = new A;    // allocate on heap
}

In neither case is knowledge of the size needed by the programmer - the compiler of course needs to know it.

Note that however you create an object, it's size must be known by the compiler at the point of creation:

class B;     // forward declaration - no size:

void f() {
    B b;              // compilation error
    B * p = new B;    // compilation error
}
link|flag
Implicitly, the size is known in both cases. Just not necessarily by you - but the compiler will give an error if it doesn't know enough to work it out – 1800 INFORMATION Jun 4 at 10:45
vote up 2 vote down

Object size is computed by the new operator:

Object *o = new Object();

You do not need to explicitly tell new the object size, but it does compute it (using sizeof operator) in order to allocate the correct amount of space on the heap.

link|flag
I believe that the question is a little more precise in the sense that it seems to ask whether a forward declaration for the type suffices to create an object in the heap. sizeof() is calculated by the compiler through knowledge of the type and thus the size, you do not need to know it, but the compiler does. – dribeas Jun 4 at 13:43
vote up 5 vote down

No, this list is by way of example and not of exclusion. Obviously the object size must be known in heap allocation so the right amount of memory can be allocated.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.