Structure of a C++ Object in Memory Vs a Struct - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T12:26:00Z http://stackoverflow.com/feeds/question/422830 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/422830/structure-of-a-c-object-in-memory-vs-a-struct 6 Structure of a C++ Object in Memory Vs a Struct hhafez 2009-01-08T00:59:19Z 2009-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(&amp;foo_struct, &amp;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#422836 8 Answer by ChrisW for Structure of a C++ Object in Memory Vs a Struct ChrisW 2009-01-08T01:02:35Z 2009-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#422838 6 Answer by Greg Hewgill for Structure of a C++ Object in Memory Vs a Struct Greg Hewgill 2009-01-08T01:02:45Z 2009-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#422947 1 Answer by Nick for Structure of a C++ Object in Memory Vs a Struct Nick 2009-01-08T01:49:25Z 2009-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#422953 0 Answer by Mike Thompson for Structure of a C++ Object in Memory Vs a Struct Mike Thompson 2009-01-08T01:52:40Z 2009-01-08T01:52:40Z <p>Classes &amp; 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#423355 14 Answer by j_random_hacker for Structure of a C++ Object in Memory Vs a Struct j_random_hacker 2009-01-08T05:30:13Z 2009-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#423378 0 Answer by Chuck for Structure of a C++ Object in Memory Vs a Struct Chuck 2009-01-08T05:43:58Z 2009-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 -1 Answer by Daemin for Structure of a C++ Object in Memory Vs a Struct Daemin 2009-01-08T06:39:00Z 2009-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>