up vote 151 down vote favorite
50
share [g+] share [fb]

Here's a fun one. When should you use struct and not class in C#?

I came across these rules here:

  • a struct should represent a single value
  • a struct should have a memory footprint less than 16 bytes
  • a struct should not be changed after creation

Do you agree?

EDIT: I'm looking for more than a "struct is a value type" answer. =D

EDIT2: The way I've been thinking of it now is to use structs in times when the item is merely a collection of value types. A way to logically hold them all together into a cohesive whole

link|improve this question

1  
I've always gone by the thinking in the second edit to the question: if I have a handful of related value types, I'll create a struct. I may have several of these small units of data and I don't really want to create a bunch of additional class files for what would only be a few dozen lines of code. – Chris Tybur Mar 4 '09 at 0:03
feedback

22 Answers

up vote 16 down vote accepted

Structs can be useful in serial communications and COM interaction.

I don't feel you need to stick to those specific guidelines, it also depends on how you want to manage your memory.

link|improve this answer
3  
+1, Add when performance is needed for large data sets. (Games, physics, rendering, and other more or less related stuff...) – Pop Catalin Mar 3 '09 at 23:59
38  
Answer is too vague. – pst Jan 27 '11 at 18:33
4  
While true, you do not explain why structs are useful for these interactions. I agree with @pst, way too vague. – IAbstract Aug 7 '11 at 11:22
3  
Unbelievable! this answer should have received negative votes. – Mike Nakis Dec 25 '11 at 21:27
feedback

The source referenced by the OP has some credibility ...but what about Microsoft - what is the stance on struct usage? I sought some extra learning from Microsoft, and here is what I found:

Consider defining a structure instead of a class if instances of the type are small and commonly short-lived or are commonly embedded in other objects.

Do not define a structure unless the type has all of the following characteristics:

  1. It logically represents a single value, similar to primitive types (integer, double, and so on).
  2. It has an instance size smaller than 16 bytes.
  3. It is immutable.
  4. It will not have to be boxed frequently.

Microsoft consistently violates those rules

Okay, #2 and #3 anyway. Our beloved dictionary has 2 internal structs:

[StructLayout(LayoutKind.Sequential)]  // default for structs
private struct Entry  //<Tkey, TValue>
{
    //  use Reflector to see the code
}

[Serializable, StructLayout(LayoutKind.Sequential)]
public struct Enumerator : 
    IEnumerator<KeyValuePair<TKey, TValue>>, IDisposable, 
    IDictionaryEnumerator, IEnumerator
{
    //  use Reflector to see the code
}

The 'JonnyCantCode.com' source got 3 out of 4 - quite forgivable since #4 probably wouldn't be an issue. If you find yourself boxing a struct, rethink your architecture.

Let's look at why Microsoft would use these structs:

  1. Each struct, Entry and Enumerator, represent single values.
  2. Speed
  3. Entry is never passed as a parameter outside of the Dictionary class. Further investigation shows that in order to satisfy implementation of IEnumerable, Dictionary uses the Enumerator struct which it copies every time an enumerator is requested ...makes sense.
  4. Internal to the Dictionary class. Enumerator is public because Dictionary is enumerable and must have equal accessibility to the IEnumerator interface implementation - e.g. IEnumerator getter.

Update - In addition, realize that when a struct implements an interface - as Enumerator does - and is cast to that implemented type, the struct becomes a reference type and is moved to the heap. Internal to the Dictionary class, Enumerator is still a value type. However, as soon as a method calls GetEnumerator(), a reference-type IEnumerator is returned.

What we don't see here is any attempt or proof of requirement to keep structs immutable or maintaining an instance size of only 16 bytes or less:

  1. Nothing in the structs above is declared readonly - not immutable
  2. Size of these struct could be well over 16 bytes
  3. Entry has an undetermined lifetime (from Add(), to Remove(), Clear(), or garbage collection);

And ... 4. Both structs store TKey and TValue, which we all know are quite capable of being reference types (added bonus info)

Dictionaries are fast, very fast and to understand why, you have to realize just how much faster structs are than reference types. Here, I have a Dictionary<int, int> that stores 300,000 random integers with sequentially incremented keys.

Capacity: 312874
MemSize: 2660827 bytes
Completed Resize: 5ms
Total time to fill: 889ms

Capacity: number of elements available before the internal array must be resized.

MemSize: determined by serializing the dictionary into a MemoryStream and getting a byte length (accurate enough for our purposes).

Completed Resize: the time it takes to resize the internal array from 150862 elements to 312874 elements. When you figure that each element is sequentially copied via Array.CopyTo(), that ain't too shabby.

Total time to fill: admittedly skewed due to logging and an OnResize event I added to the source; however, still impressive to fill 300k integers while resizing 15 times during the operation. Just out of curiosity, what would the total time to fill be if I already knew the capacity? 13ms

So, now, what if Entry were a class? Would these times or metrics really differ that much?

Capacity: 312874
MemSize: 2660827 bytes
Completed Resize: 26ms
Total time to fill: 964ms

Obviously, the big difference is in resizing. Any difference if Dictionary is initialized with the Capacity? Not enough to be concerned with ... 12ms.

What happens is, because Entry is a struct, it does not require initialization like a reference type. This is both the beauty and the bane of the value type. In order to use Entry as a reference type, I had to insert the following code:

/*
 *  Added to satisfy initialization of entry elements --
 *  this is where the extra time is spent resizing the Entry array
 * **/
for (int i = 0 ; i < prime ; i++)
{
    destinationArray[i] = new Entry( );
}
/*  *********************************************** */  

The reason I had to initialize each array element of Entry as a reference type can be found at MSDN: Structure Design. In short:

Do not provide a default constructor for a structure.

If a structure defines a default constructor, when arrays of the structure are created, the common language runtime automatically executes the default constructor on each array element.

Some compilers, such as the C# compiler, do not allow structures to have default constructors.

It is actually quite simple and we will borrow from Asimov's Three Laws of Robotics:

  1. The struct must be safe to use
  2. The struct must perform its function efficiently, unless this would violate rule #1
  3. The struct must remain intact during its use unless its destruction is required to satisfy rule #1

...what do we take away from this: in short, be responsible with the use of value types. They are quick and efficient, but have the ability to cause many unexpected behaviors if not properly maintained (i.e. unintentional copies).

link|improve this answer
feedback

Whenever you don't need polymorphism, want value semantics, and want to avoid heap allocation and the associated garbage collection overhead. The caveat, however, is that structs (arbitrarily large) are more expensive to pass around than class references (usually one machine word), so classes could end up being faster in practice.

link|improve this answer
That is only one "caveat". Should also consider "lifting" of value-types and cases such as (Guid)null (it's okay to cast a null to a reference-type), among other things. – pst Jan 27 '11 at 18:34
feedback

I do not agree with the rules given in the original post. Here are my rules:

1) You use structs for performance when stored in arrays. (see also When are structs the answer?)

2) You need them in code passing structured data to/from C/C++

3) Do not use structs unless you need them:

  • They behave different from "normal objects" (reference types) under assignment and when passing as arguments, which can lead to unexpected behavior; this is particularly dangerous if the person looking at the code does not know he is dealing with a struct.
  • They cannot be inherited.
  • Passing structs as arguments is more expensive than classes.
link|improve this answer
+1 Yes, I agree on #1 entirely (this is a huge advantage when dealing with things like images, etc) and for pointing out that they are different from "normal objects" and there is know way of knowing this except by existing knowledge or examining the type itself. Also, you can't cast a null value to a struct type :-) This is actually one case where I almost wish there was some 'Hungarian' for non-Core value-types or a mandatory 'struct' keyword at variable declaration site. – pst Jan 27 '11 at 18:36
+1: great points – IAbstract Aug 7 '11 at 11:31
feedback

Use a struct when you want value semantics as opposed to reference semantics.

Edit

Not sure why folks are downvoting this had two already but this is a valid point, and was made before the op clearified his question, and it is the most fundamental basic reason for a struct.

if you need reference semantics you need an object not a struct.

link|improve this answer
Everyone knows that. Seems like he's looking for more than a "struct is a value type" answer. – DannySmurf Feb 6 '09 at 17:42
Not everyone knows that. That is clearly one case. – BobbyShaftoe Feb 6 '09 at 17:46
6  
It the most basic case and should be stated for anyone who reads this post and doesn't know that. – JoshBerke Feb 6 '09 at 17:55
Not that this answer isn't true; it obviously is. That's not really the point. – DannySmurf Feb 6 '09 at 18:02
10  
@Josh: For anyone who doesn't know it already, simply saying it is an insufficient answer, since it's quite likely they don't know what it means, either. – DannySmurf Feb 6 '09 at 18:03
show 1 more comment
feedback

Structs are good for atomic representation of data, where the said data can be copied multiple times by the code. Cloning an object is in general more expensive than copying a struct, as it involves allocating the memory, running the constructor and deallocating/garbage collection when done with it.

link|improve this answer
feedback

In addition to the "it is a value" answer, one specific scenario for using structs is when you know that you have a set of data that is causing garbage collection issues, and you have lots of objects. For example, a large list/array of Person instances. The natural metaphor here is a class, but if you have large number of long-lived Person instance, they can end up clogging GEN-2 and causing GC stalls. If the scenario warrants it, one potential approach here is to use an array (not list) of Person structs, i.e. Person[]. Now, instead of having millions of objects in GEN-2, you have a single chunk on the LOH (I'm assuming no strings etc here - i.e. a pure value without any references). This has very little GC impact.

Working with this data is awkward, as the data is probably over-sized for a struct, and you don't want to copy fat values all the time. However, accessing it directly in an array does not copy the struct - it is in-place (contrast to a list indexer, which does copy). This means lots of work with indexes:

int index = ...
int id = peopleArray[index].Id;

Note that keeping the values themselves immutable will help here. For more complex logic, use a method with a by-ref parameter:

void Foo(ref Person person) {...}
...
Foo(ref peopleArray[index]);

Again, this is in-place - we have not copied the value.

In very specific scenarios, this tactic can be very successful; however, it is a fairly advanced scernario that should be attempted only if you know what you are doing and why. The default here would be a class.

link|improve this answer
feedback

System.Drawing.Rectangle violates all three of these rules.

link|improve this answer
9  
Nobody said the BCL implementors did it right. =P – Erik Forbes Feb 6 '09 at 20:42
feedback

With the exception of the valuetypes that are used directly by the runtime and various others for PInvoke purposes, you should only use valuetypes in 2 scenarios.

  1. When you need copy semantics.
  2. When you need automatic initialization, normally in arrays of these types.
link|improve this answer
#2 seems to be part of the reason for struct prevalence in .Net collection classes.. – IAbstract Aug 7 '11 at 11:38
feedback

You need to use a "struct" in situations where you want to explicitly specify memory layout using the StructLayoutAttribute - typically for PInvoke.

Edit: Comment points out that you can use class or struct with StructLayoutAttribute and that is certainly true. In practice, you would typically use a struct - it is allocated on the stack vs the heap which makes sense if you are just passing an argument to an unmanaged method call.

link|improve this answer
1  
The StructLayoutAttribute can be applied to structs or classes so this is not a reason to use structs. – Stephen Martin Feb 6 '09 at 18:32
feedback

First: Interop scenarios or when you need to specify the memory layout

Second: When the data is almost the same size as a reference pointer anyway.

link|improve this answer
feedback

I use structs for packing or unpacking any sort of binary communication format. That includes reading or writing to disk, DirectX vertex lists, network protocols, or dealing with encrypted/compressed data.

The three guidelines you list haven't been useful for me in this context. When I need to write out four hundred bytes of stuff in a Particular Order, I'm gonna define a four-hundred-byte struct, and I'm gonna fill it with whatever unrelated values it's supposed to have, and I'm going to set it up whatever way makes the most sense at the time. (Okay, four hundred bytes would be pretty strange-- but back when I was writing Excel files for a living, I was dealing with structs of up to about forty bytes all over, because that's how big some of the BIFF records ARE.)

link|improve this answer
feedback

Another situation where you should use structs is when your objects don't need identity.

link|improve this answer
feedback

I think a good first approximation is "never".

I think a good second approximation is "never".

If you are desperate for perf, consider them, but then always measure.

link|improve this answer
4  
I would disagree with that answer. Structs have a legitimate use in many scenarios. Here's an example - marshaling data cross processes in atomic manner. – Franci Penov Feb 6 '09 at 17:54
Good point, interop/marshalling is another good reason. – Brian Feb 6 '09 at 18:01
3  
You should edit your post and elaborate on your points - you've given your opinion, but you should back it up with why you take this opinion. – Erik Forbes Feb 6 '09 at 20:43
1  
I think they need an equivalent of the Totin' Chip card (en.wikipedia.org/wiki/Totin%27_Chip) for using structs. Seriously. – Greg May 13 '10 at 19:00
feedback

I use them sometimes for string valued "enums".

link|improve this answer
But string valued "enums"'s were a bad idea in the first place. Unless i miss understand you. What how do you use them in this context? – Oxinabox Sep 28 '11 at 11:44
@Oxinabox - I think you are right. I have stopped using them that way, for the most part. The idea was to group a collection of related string constants. I would declare them as public const, but unless you want to have spaces and the like in the strings, regular enums will work just as well. – Ishmael Sep 29 '11 at 13:22
feedback

Nah - I don't entirely agree with the rules. They are good guidelines to consider with performance and standardization, but not in light of the possibilities.

As you can see in the responses, there are a log of creative ways to use them. So, these guidelines need to just be that, always for the sake of performance and efficiency.

In this case, I use classes to represent real world objects in their larger form, I use structs to represent smaller objects that have more exact uses. The way you said it, "a more cohesive whole." The keyword being cohesive. The classes will be more object oriented elements, while structs can have some of those characteristics, their on a smaller scale. IMO.

I use them a lot putting in Treeview and Listview tags where common static attributes can be accessed very quickly. I would struggle to get this info another way. For example, in my database applications, I use a Treeview where I have Tables, SPs, Functions, or any other objects. I create and populate my struct, put it in the tag, pull it out, get the data of the selection and so forth. I wouldn't do this with a class!

I do try and keep them small, use them in single instance situations, and keep them from changing. It's prudent to be aware of memory, allocation, and performance. And testing is so necessary.

link|improve this answer
feedback

I would use structs for bridging unmanaged code, and lightweight static type data sets. The tradeoff between performance gain with memory management and lack of extensibility in design.

link|improve this answer
feedback

I can only agree with the first item, structs are used a lot in game programming for example

link|improve this answer
1  
they make games in C#? – Alex Baranosky Feb 6 '09 at 17:50
1  
Yes, well parts of them anyway. I know it is used for portions of games, like NWN2 World Creator. C is still usually at the core(engine). XNA Game Studio, Google it :) – Refracted Paladin Feb 6 '09 at 17:55
1  
This answer doesn't explain what it is about structs that warrant their use in that situation. – Rob Feb 6 '09 at 17:58
there are quite a few commercial games written in C#, the point is that they are used for optimized code – BlackTigerX Feb 6 '09 at 18:01
1  
Structures provide better performance when you have small collections of value-types that you want to group together. This happens all the time in game programming, for example, a vertex in a 3D model will have a position, texture coordinate and a normal, it is also generally going to be immutable. A single model may have a couple thousand vertices, or it may have a dozen, but structs provide less overhead overall in this usage scenario. I have verified this through my own engine design. – Chris D. Jul 21 '10 at 18:26
feedback

I rarely use a struct for things. But that's just me. It depends whether I need the object to be nullable or not.

(Minor Edit): Like it was stated above, I use classes for real-world objects. I also have the mindset of structs are used for storing small amounts of data.

I hope this helps, I'm sorta new here.

link|improve this answer
feedback

You use structs when you don't want to inherit your class. This is great if you want to make objects that only hold datas.

link|improve this answer
3  
That is very much the wrong reason to choose struct over class – Marc Gravell Oct 22 '11 at 12:21
feedback

I'm watching this video on writing modern c++ code: http://channel9.msdn.com/Events/BUILD/BUILD2011/TOOL-835T

and it's mostly a giant defense of value types.

There's even a quote:

C++ is the best language for garbage collection principally because it creates less garbage. - Bjarne Stroustrup

The core of the argument seems to be that since value types are often placed directly in a class there is one less thing for the memory management to keep track of.

So if you created an object that had another object as a field, then it wouldn't allocate two objects, the second object memory would just be allocated as part of the first object. Which would mean not just one less allocate/cleanup operation but each access to the child object would be one less pointer operation for the CPU to process.

link|improve this answer
feedback

Chapter 7 of Effective C# has some good stuff about when to use struct in C#

link|improve this answer
I'm sure there's more "titles" that have some good stuff. Sorry I don't mean to be snippy or rude, but at least you could have elaborated a bit more. – ra170 Jul 11 '11 at 20:33
1  
(My 5 mins of comment editing was up). Effective C# has only 6 chapters. I'm not sure whether you were trying to be sarcastic. Also, Sorry I don't mean to be snippy or rude, but at least you could have elaborated a bit more. As an example: Jon's Skeet excellent book "C# in depth" has "some good stuff" about structs in chapter: 2.3 - Value types and reference types. Jon talks about real world examples as well as dispels some misconceptions about reference types vs. value types. – ra170 Jul 11 '11 at 20:48
feedback

Your Answer

 
or
required, but never shown

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