Class vs Struct for data only? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T23:29:34Zhttp://stackoverflow.com/feeds/question/431429http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/431429/class-vs-struct-for-data-only4Class vs Struct for data only?Daniel2009-01-10T17:54:32Z2009-01-12T20:53:44Z
<p>Is there any advantage over using a class over a struct in cases such as these?
(note: it will only hold variables, there will never be functions)</p>
<pre><code>class Foo {
private:
struct Pos { int x, y, z };
public:
Pos Position;
};
</code></pre>
<p>Versus:</p>
<pre><code>struct Foo {
struct Pos { int x, y, z } Pos;
};
</code></pre>
<p><hr /></p>
<p>Similar questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/54585/when-should-you-use-a-class-vs-a-struct-in-c">http://stackoverflow.com/questions/54585/when-should-you-use-a-class-vs-a-struct-in-c</a></li>
<li><a href="http://stackoverflow.com/questions/92859/what-are-the-differences-between-struct-and-class-in-c">http://stackoverflow.com/questions/92859/what-are-the-differences-between-struct-and-class-in-c</a></li>
<li><a href="http://stackoverflow.com/questions/85553/when-should-i-use-a-struct-instead-of-a-class">http://stackoverflow.com/questions/85553/when-should-i-use-a-struct-instead-of-a-class</a></li>
</ul>
http://stackoverflow.com/questions/431429/class-vs-struct-for-data-only/431434#43143411Answer by Evan Teran for Class vs Struct for data only?Evan Teran2009-01-10T17:58:23Z2009-01-10T18:11:22Z<p>There is no real advantage of using one over the other, in c++, the only difference between a struct and a class is the default visibility of it's members (structs default to public, classes default to private).</p>
<p>Personally, I tend to prefer structs for POD types and use classes for everything else.</p>
<p>EDIT: <a href="http://stackoverflow.com/users/34509/litb">litb</a> made a good point in the comment so I'm going to quote him here:</p>
<blockquote>
<p>one important other difference is that
structs derive from other
classes/struct public by default,
while classes derive privately by
default.</p>
</blockquote>
http://stackoverflow.com/questions/431429/class-vs-struct-for-data-only/431436#4314361Answer by S.Lott for Class vs Struct for data only?S.Lott2009-01-10T17:58:43Z2009-01-10T18:33:42Z<p>"(note: it will only hold variables, there will never be functions)"</p>
<p>Never is a big word. Usually "never" means "eventually". Since that's the case, I'd suggest you use a class. That way, when things change, you don't have so much to change.</p>
<p>The Java (and Python) folks have gotten along fine with everything being a class. It hasn't hurt them any to not have these specialized method-less classes that C++ calls a "struct".</p>
http://stackoverflow.com/questions/431429/class-vs-struct-for-data-only/431438#4314381Answer by Jason Baker for Class vs Struct for data only?Jason Baker2009-01-10T17:58:57Z2009-01-10T17:58:57Z<p>The <em>only</em> difference between a class and a struct is that struct members are public by default and class members are private by default. So I say go with whichever one you like best. I'm sure there are arguments to be made in terms of which one is more readable, but I really don't think it's a big deal.</p>
http://stackoverflow.com/questions/431429/class-vs-struct-for-data-only/431439#4314393Answer by Charles Bailey for Class vs Struct for data only?Charles Bailey2009-01-10T17:59:08Z2009-01-10T17:59:08Z<p><code>struct</code> and <code>class</code> mean <em>exactly</em> the same thing in C++ with the exception that the default access for struct members is public whereas it is private for classes. I tend to chose struct for classes that only have public members and classes for everything else, but it's only a style issue.</p>
http://stackoverflow.com/questions/431429/class-vs-struct-for-data-only/431558#4315580Answer by Jonathan Leffler for Class vs Struct for data only?Jonathan Leffler2009-01-10T19:13:36Z2009-01-10T19:13:36Z<p>If the contents of the type have no memory allocation issues (such as plain int), then using <code>struct</code> is fine if that's the way you want to go and you've made a conscious decision about it that you can justify to those who use your code. However, if any of the members is a pointer type, then you need to think hard about the memory management issues. It may still be OK to use a <code>struct</code>, but you are much more likely to need a destructor, and some constructors, and so on. At that point, you want a <code>class</code>.</p>
http://stackoverflow.com/questions/431429/class-vs-struct-for-data-only/432022#4320220Answer by Daemin for Class vs Struct for data only?Daemin2009-01-11T00:16:50Z2009-01-11T00:16:50Z<p>Essentially the choice between a struct and a class comes down to your style and how much you want to type. </p>
<ul>
<li>If you only have public members in a class/struct you might as well use the struct keyword. It will save you having to type out "public:" later on.</li>
<li>The other reason to choose a struct over a class would be to implicitly document the intent of the object. So you would make POD types structs (even if they contain a constructors and some static helper methods etc), and you would use class for all the other "regular" classes.</li>
</ul>
http://stackoverflow.com/questions/431429/class-vs-struct-for-data-only/436977#4369773Answer by Roger Nelson for Class vs Struct for data only?Roger Nelson2009-01-12T20:53:44Z2009-01-12T20:53:44Z<p>One side point I will make is that structs are often used for autoaggregate initialized data structures. You cannot use autoaggregate initialization with classes, unless <strong>all</strong> members <strong>including methods</strong> are public.</p>
<pre><code>struct A (valid)
{
int a;
int b;
int c:
} x = { 1,2,3 };
class A (invalid)
{
int a;
int b;
int c:
} x = { 1,2,3 };
class A (valid)
{
public:
int a;
int b;
int c:
} x = { 1,2,3 };
class A (valid)
{
public:
int a;
int b;
int c:
public:
void foo();
} x = { 1,2,3 };
class A (invalid)
{
public:
int a;
int b;
private:
int c:
private:
void foo();
} x = { 1,2,3 };
</code></pre>