Structure of a C++ Object in Memory Vs a Struct - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T12:26:00Zhttp://stackoverflow.com/feeds/question/422830http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/422830/structure-of-a-c-object-in-memory-vs-a-struct6Structure of a C++ Object in Memory Vs a Structhhafez2009-01-08T00:59:19Z2009-01-08T06:39:00Z
<p>If I have a class as follows</p>
<pre><code> class Example_Class
{
private:
int x;
int y;
public:
Example_Class()
{
x = 8;
y = 9;
}
~Example_Class()
{ }
};
</code></pre>
<p>And a struct as follows</p>
<pre><code>struct
{
int x;
int y;
} example_struct;
</code></pre>
<p>Is the structure in memory of the <code>example_struct</code> simmilar to that in <code>Example_Class</code></p>
<p>for example if I do the following</p>
<pre><code>struct example_struct foo_struct;
Example_Class foo_class = Example_Class();
memcpy(&foo_struct, &foo_class, sizeof(foo_struct));
</code></pre>
<p>will <code>foo_struct.x = 8</code> and <code>foo_struct.y = 9</code> (ie: the same values as the x,y values in the foo_class) ?</p>
<p>The reason I ask is I have a C++ library (don't want to change it) that is sharing an object with C code and I want to use a struct to represent the object coming from the C++ library. I'm only interested in the attributes of the object.</p>
<p>I know the ideal situation would be to have Example_class wrap arround a common structure between the C and C++ code but it is not going to be easy to change the C++ library in use.</p>
http://stackoverflow.com/questions/422830/structure-of-a-c-object-in-memory-vs-a-struct/422836#4228368Answer by ChrisW for Structure of a C++ Object in Memory Vs a StructChrisW2009-01-08T01:02:35Z2009-01-08T01:02:35Z<blockquote>
<p>Is the structure in memory of the example_struct simmilar to that in Example_Class</p>
</blockquote>
<p>The behaviour isn't guaranteed, and is compiler-dependent.</p>
<p>Having said that, the answer is "yes, on my machine", provided that the Example_Class contains no virtual method (and doesn't inherit from a base class).</p>
http://stackoverflow.com/questions/422830/structure-of-a-c-object-in-memory-vs-a-struct/422838#4228386Answer by Greg Hewgill for Structure of a C++ Object in Memory Vs a StructGreg Hewgill2009-01-08T01:02:45Z2009-01-08T01:02:45Z<p>In the case you describe, the answer is "probably yes". However, if the class has any virtual functions (including virtual destructor, which could be inherited from a base class), or uses multiple inheritance then the class layout may be different.</p>
http://stackoverflow.com/questions/422830/structure-of-a-c-object-in-memory-vs-a-struct/422947#4229471Answer by Nick for Structure of a C++ Object in Memory Vs a StructNick2009-01-08T01:49:25Z2009-01-08T01:49:25Z<p>To add to what other people have said (eg: compiler-specific, will likely work as long as you don't have virtual functions):</p>
<p>I would highly suggest a static assert (compile-time check) that the sizeof(Example_class) == sizeof(example_struct) if you are doing this. See BOOST_STATIC_ASSERT, or the equivalent compiler-specific or custom construction. This is a good first-line of defense if someone (or something, such as a compiler change) modifies the class to invalidate the match. If you want extra checking, you can also runtime check that the offsets to the members are the same, which (together with the static size assert) will guarantee correctness.</p>
http://stackoverflow.com/questions/422830/structure-of-a-c-object-in-memory-vs-a-struct/422953#4229530Answer by Mike Thompson for Structure of a C++ Object in Memory Vs a StructMike Thompson2009-01-08T01:52:40Z2009-01-08T01:52:40Z<p>Classes & structs in C++ are the equivalent, except that all members of a struct are public by default (class members are private by default). This ensures that compiling legacy C code in a C++ compiler will work as expected.</p>
<p>There is nothing stopping you from using all the fancy C++ features in a struct:</p>
<pre><code>struct ReallyAClass
{
ReallyAClass();
virtual !ReallAClass();
/// etc etc etc
};
</code></pre>
http://stackoverflow.com/questions/422830/structure-of-a-c-object-in-memory-vs-a-struct/423355#42335514Answer by j_random_hacker for Structure of a C++ Object in Memory Vs a Structj_random_hacker2009-01-08T05:30:13Z2009-01-08T05:30:13Z<p>The C++ standard <em>guarantees</em> that memory layouts of a C <code>struct</code> and a C++ <code>class</code> (or <code>struct</code> -- same thing) will be identical, provided that the C++ <code>class</code>/<code>struct</code> fits the criteria of being <strong>POD</strong> ("Plain Old Data"). So what does POD mean?</p>
<p>A class or struct is POD if:</p>
<ul>
<li>All data members are public and themselves POD or fundamental types (but not reference or pointer-to-member types), or arrays of such</li>
<li>It has no user-defined constructors, assignment operators or destructors</li>
<li>It has no virtual functions</li>
<li>It has no base classes</li>
</ul>
<p>About the only "C++-isms" allowed are non-virtual member functions, static members and member functions.</p>
<p>Since your class has both a constructor and a destructor, it is formally speaking not of POD type, so the guarantee does not hold. (Although, as others have mentioned, in practice the two layouts are likely to be identical on any compiler that you try, so long as there are no virtual functions).</p>
<p>See section [26.7] of the <a href="http://www.parashift.com/c++-faq-lite/intrinsic-types.html#faq-26.7" rel="nofollow">C++ FAQ Lite</a> for more details.</p>
http://stackoverflow.com/questions/422830/structure-of-a-c-object-in-memory-vs-a-struct/423378#4233780Answer by Chuck for Structure of a C++ Object in Memory Vs a StructChuck2009-01-08T05:43:58Z2009-01-08T05:43:58Z<p>Why not explicitly assign the class's members to the struct's when you want to pass the data to C? That way you know your code will work anywhere.</p>
http://stackoverflow.com/questions/422830/structure-of-a-c-object-in-memory-vs-a-struct/423451#423451-1Answer by Daemin for Structure of a C++ Object in Memory Vs a StructDaemin2009-01-08T06:39:00Z2009-01-08T06:39:00Z<p>You probably just derive the class from the struct, either publicly or privately. Then casting it would resolve correctly in the C++ code.</p>