up vote 72 down vote favorite
44
share [g+] share [fb]

I'm looking for a clear, concise and accurate answer.

Ideally as the actual answer, although links to good explanations welcome.

link|improve this question

72% accept rate
feedback

14 Answers

up vote 129 down vote accepted

In .NET, there are two categories of types, reference types and value types.

Structs are value types and classes are reference types.

The general different is that a reference type lives on the heap, and a value type lives inline, that is, wherever it is your variable or field is defined.

A variable containing a value type contains the entire value type value. For a struct, that means that the variable contains the entire struct, with all its fields.

A variable containing a reference type contains a pointer, or a reference to somewhere else in memory where the actual value resides.

This has one benefit, to begin with:

  • value types always contains a value
  • reference types can contain a null-reference, meaning that they don't refer to anything at all at the moment

Internally, reference types are implemented as pointers, and knowing that, and knowing how variable assignment works, there are other behavioral patterns:

  • copying the contents of a value type variable into another variable, copies the entire contents into the new variable, making the two distinct. In other words, after the copy, changes to one won't affect the other
  • copying the contents of a reference type variable into another variable, copies the reference, which means you now have two references to the same somewhere else storage of the actual data. In other words, after the copy, changing the data in one reference will appear to affect the other as well, but only because you're really just looking at the same data both places

When you declare variables or fields, here's how the two types differ:

  • variable: value type lives on the stack, reference type lives on the stack as a pointer to somewhere in heap memory where the actual memory lives
  • class/struct-field: value type lives inside the class, reference type lives inside the class as a pointer to somewhere in heap memory where the actual memory lives.
link|improve this answer
3  
This has to be about the clearest and most helpful answer to this question I have seen. (and I've seen a lot of attempted answers) – StarPacker Dec 10 '09 at 16:09
1  
In the interest of full completeness, I should mention that Eric Lippert has said that the stack is an implementation detail, whenever I mention stack above, have Eric's post(s) in mind. – Lasse V. Karlsen Jun 16 '11 at 15:59
feedback

Instances of classes are stored on the managed heap. All variables 'containing' an instance are simply a reference to the instance on the heap. Passing an object to a method results in a copy of the reference being passed, not the object itself.

Structures (technically, value types) are stored wherever they are used, much like a primitive type. The contents may be copied by the runtime at any time and without invoking a customised copy-constructor. Passing a value type to a method involves copying the entire value, again without invoking any customisable code.

The distinction is made better by the C++/CLI names: "ref class" is a class as described first, "value class" is a class as described second. The keywords "class" and "struct" as used by C# are simply something that must be learned.

link|improve this answer
feedback

A short summary of each:

Classes Only:

  • Can support inheritance
  • Are reference types
  • Have memory overhead per new instance

Structs Only:

  • Cannot support inheritance
  • Are value types
  • Do not have a memory overhead per new instance - unless 'boxed'

Both Classes and Structs:

  • Are compound data types typically used to contain a few variables that have some logical relationship
  • Can contain methods and events
  • Can support interfaces
link|improve this answer
1  
There are some parts of this answer that are not quite right. Classes do not always go on the heap, and structs do not always go on the stack. Current exceptions include struct fields on a class, captured variables in anonymous methods and lambda expressions, iterator blocks, and the already mentioned boxed values. But stack vs heap allocation is a implementation detail and may be subject to change. Eric lippart discusses this here. I've downvoted, but will happily remove it if you update. – Simon P Stevens Oct 29 '10 at 9:08
I read his blog post recently - but forgotten I'd written this answer the way I did. I'll update - let me know if there's anything else wrong :) – Thomas Bratt Nov 29 '10 at 11:37
feedback

In .Net the struct and class declarations differentiate between reference types and value types.

When you pass round a reference type there is only one actually stored. All the code that accesses the instance is accessing the same one.

When you pass round a value type each one is a copy. All the code is working on it's own copy.

This can be shown with an example:

void ChangeInt( int input ) { 
   input = 25;
}

...

int testStruct = 15; //value type

ChangeInt( testStruct );

//value of testInt is still 15 - the method changed a copy

For a class this would be different

class MyClass {
    string MyProperty { get; set; }
}

void ChangeMyClass ( MyClass input ) { 
   input.MyProperty = "new value";
}

...

MyClass testClass = new MyClass { MyProperty = "initial value" }; //ref type

ChangeMyClass ( testClass );

//value of testClass.MyProperty is now "new value" 
// - the method changed the instance passed.

Classes can be nothing - the reference can point to a null.

Structs are the actual value - they can be empty but never null. For this reason structs always have a default constructor with no parameters - they need a 'starting value'.

link|improve this answer
Why was this downvoted? J&J don't seem to have a problem with people answering their own questions. – AR. Oct 14 '08 at 21:47
Not a clue - this was posted quite early in the beta when we were all still just figuring out the rules. – Keith Oct 15 '08 at 7:08
feedback

The question is pretty much answered at this point.

It might be of interest a quick and dirty guide to choosing between struct and class in every-day coding.

link|improve this answer
feedback

I think this article "Type Fundamentals" by Jeffrey Richter is a very good place to start.

link|improve this answer
feedback

Well, for starters, a struct is passed by value rather than by reference. Structs are good for relatively simple data structures, while classes have a lot more flexibility from an architectural point of view via polymorphism and inheritance.

Others can probably give you more detail than I, but I use structs when the structure that I am going for is simple.

link|improve this answer
feedback

Structs are the actual value - they can be empty but never null

This is true, however also note that as of .NET 2 structs support a Nullable version and C# supplies some syntactic sugar to make it easier to use.

int? value = null;
value  = 1;
link|improve this answer
1  
Be aware that this is only syntactic sugar which reads 'Nullable<int> value = null;' – Erik van Brakel Oct 4 '08 at 22:32
feedback

Remember the answer, as 99% of interviews I've had use it! Here's two more explanations to add the list:

link|improve this answer
Yeah, it's one I always ask. – Keith Oct 7 '08 at 12:29
That would be understand the answer, not remember it, right? – Groo Nov 6 '09 at 8:08
1  
No, remember some text book answer that makes it sound like you work for the CLR team instead of understanding that 90% of the time you won't care blogs.msdn.com/ericlippert/archive/2009/05/04/… – Chris S Nov 6 '09 at 10:14
@Groo To clarify my old comment - of course understand it but (depending on the job) a lot of the time you will never need to create your own structs. – Chris S Sep 23 '11 at 10:11
feedback

Yeah @dp, I thought that might be a little off topic, but it makes sense to mention that here.

You can also check with ??, so:

int? i = SomeFunctionThatMightGetAnInt();

//if i is null write 0, otherwise write i
Console.Write( i ?? 0 );
link|improve this answer
feedback

Structure vs Class Structure is value type so stored in stack,but class is reference type stored in heap. Structure doesn't support inheritance,polymorphism but,class supports both. By default all the struct members are public but class members are by default private in nature. As structure is value type,we can't assign null to struct object,but it is not the case in class.

link|improve this answer
feedback

1.Events declared in a class have their += and -= access automatically locked via a lock(this) to make them thread safe (static events are locked on the typeof the class). Events declared in a struct do not have their += and -= access automatically locked. A lock(this) for a struct would not work since you can only lock on a reference type expression.

2.Creating a struct instance cannot cause a garbage collection (unless the constructor directly or indirectly creates a reference type instance) whereas creating a reference type instance can cause garbage collection.

3.A struct always has a built-in public default constructor.

class DefaultConstructor
{
    static void Eg()
    {
          Direct   yes = new   Direct(); // always compiles ok
        InDirect maybe = new InDirect(); // compiles if c'tor exists and is accessible
        //...
    }
}

This means that a struct is always instantiable whereas a class might not be since all its constructors could be private.

class NonInstantiable
{
    private NonInstantiable() // ok
    {
    }
}

struct Direct
{
    private Direct() // compile-time error
    {
    }
}

4.A struct cannot have a destructor. A destructor is just an override of object.Finalize in disguise, and structs, being value types, are not subject to garabge collection.

struct Direct
{
    ~Direct() {} // compile-time error
}
class InDirect
{
    ~InDirect() {} // compiles ok
}

And the CIL for ~Indirect() looks like this:

.method family hidebysig virtual instance void 
        Finalize() cil managed
{
  // ...
} // end of method Indirect::Finalize
  1. a struct is implicitly sealed, a class isn't. a struct can't be abstract, a class can. a struct can't call : base() in its constructor whereas a class with no explicit base class can. a struct can't extend another class, a class can. a struct can't declare protected members (eg fields, nested types) a class can. a struct can't declare abstract function members, an abstract class can. a struct can't declare virtual function members, a class can. a struct can't declare sealed function members, a class can. a struct can't declare override function members, a class can. The one exception to this rule is that a struct can override the virtual methods of System.Object, viz, Equals(), and GetHashCode(), and ToString().
link|improve this answer
In what circumstances would one use an event with a struct? I can imagine that a very carefully-written program could use events with a struct in a way that would work, but only if the struct was never copied or passed by value, in which case it might as well be a class. – supercat Dec 6 '11 at 16:08
feedback

Every variable or field of a primitive value type or structure type holds a unique instance of that type, including all its fields (public and private). By contrast, variables or fields of reference types may hold null, or may refer to an object, stored elsewhere, to which any number of other references may also exist. The fields of a struct will be stored in the same place as the variable or field of that structure type, which may be either on the stack or may be part of another heap object.

Creating a variable or field of a primitive value type will create it with a default value; creating a variable or field of a structure type will create a new instance, creating all fields therein in the default manner. Creating a new instance of a reference type will start by create all fields therein in the default manner, and then running optional additional code depending upon the type.

Copying one variable or field of a primitive type to another will copy the value. Copying one variable or field of structure type to another will copy all the fields (public and private) of the former instance to the latter instance. Copying one variable or field of reference type to another will cause the latter to refer to the same instance as the former (if any).

It's important to note that in some languages like C++, the semantic behavior of a type is independent of how it is stored, but that isn't true of .net. If a type implements mutable value semantics, copying one variable of that type to another copies the properties of the first to another instance, referred to by the second, and using a member of the second to mutate it will cause that second instance to be changed but not the first. If a type implements mutable reference semantics, copying one variable to another and using a member of the second to mutate the object will affect the object referred to by the first variable; types with immutable semantics do not allow mutation, so it doesn't matter semantically whether copying creates a new instance or creates another reference to the first.

In .net, it is possible for value types to implement any of the above semantics, provided that all of their fields can do likewise. Reference type, however, can only implement mutable reference semantics or immutable semantics; value types with fields of mutable reference types are limited to either implementing mutable reference semantics or weird hybrid semantics.

link|improve this answer
feedback

Assuming it's similar to c++, a struct is a simple data structure that is used to contain several variables.

A class is a data structure that has defined operations (methods) and has protected variables for encapsulation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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