I'm looking for a clear, concise and accurate answer.
Ideally as the actual answer, although links to good explanations welcome.
|
I'm looking for a clear, concise and accurate answer. Ideally as the actual answer, although links to good explanations welcome. |
||||
|
|
|
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:
Internally, reference types are implemented as pointers, and knowing that, and knowing how variable assignment works, there are other behavioral patterns:
When you declare variables or fields, here's how the two types differ:
|
|||||||||||||||
|
|
A short summary of each: Classes Only:
Structs Only:
Both Classes and Structs:
|
|||||||||||||
|
|
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. |
|||
|
|
|
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:
For a class this would be different
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'. |
|||||||||
|
|
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. |
|||
|
|
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. |
|||
|
|
|
I think this article "Type Fundamentals" by Jeffrey Richter is a very good place to start. |
|||
|
|
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.
|
|||||
|
|
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. |
|||
|
|
|
Remember the answer, as 99% of interviews I've had use it! Here's two more explanations to add the list: |
|||||||||||||
|
|
In addition to all the above differences If you are after a video explaining all the differences, you can check this link. http://csharp-video-tutorials.blogspot.com/2012/06/part-29-c-tutorial-difference-between.html |
|||
|
|
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:
|
||||
|
|
|
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.
This means that a struct is always instantiable whereas a class might not be since all its constructors could be private.
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.
|
|||
|
|
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. |
|||
|
|
|
Struct is value type and Class is Reference type. So All the value type Vs reference type difference apply here. Nice discussion can be found here. |
||||
|
|
|
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. |
|||
|
|