The official guidelines suggest that there can be very few practical uses for these. Does anyone have examples of where they've put them to good use?
|
|
|
|
|
|
|
For the most part, it's good to emulate the behaviour of the framework. Many elementary data types such as When in doubt, use a reference type instead. |
||
|
|
|
|
Au Contrare... you'll find C/C++ people flocking to structs a.k.a. value types. |
||
|
|
|
|
Enums are first class citizens of .NET world. As for structures I found that in most cases classes can be used, however for memory-intense scenarios consider using structures. As a practical example I used structures as data structures for OSCAR (ICQ) protocols primitives. |
||
|
|
|
|
I tend to use enum for avoiding magic numbers, this can be overcome by const I guess, but enum allows you to group them up. i.e
|
||
|
|
|
|
You should use a value type whenever:
|
||
|
|
|
Exactly what most other people use them for.. Fast and light data/value access. As well as being ideal for making grouping properties (where it makes sense of course) into an object. For example:
Its important to remember the differences between value and reference types. Used properly, they can really improve efficiency of your code as well as make the object model more robust. |
||
|
|
|
|
Value types, specifically, structs and enums, and have proper uses in object-oriented programming. Enums are, as aku said, first class citizens in .NET, which can be used from all sorts of things from Colors to DialogBox options to various types of flags. Structs, as far as my experience goes, are great as Data Transfer Objects; logicless containers of data especially when they comprise mostly of primitive types. And of course, primitive types are all value types, which resolve to System.Object (unlike in Java where primitive types aren't related to structs and need some sort of wrapper). |
||
|
|
|
Actually prior to .net 3.5 SP1 there has been a performance issue with the intensive use of value types as mentioned here in Vance Morrison's blog. As far as I can see the vast majority of the time you should be using classes and the JITter should guarantee a good level of performance. structs have 'value type semantics', so will pass by value rather than by reference. We can see this difference in behaviour in the following example:-
The struct will be passed by value so StructTest() will get it's own A struct and when it changes a.Foobar will change the Foobar of its new type. ClassTest() will receive a reference to b and thus the .Foobar property of b will be changed. Thus we'd obtain the following output:-
So if you desire value type semantics then that would be another reason to declare something as a struct. Note interestingly that the DateTime type in .net is a value type, so the .net architects decided that it was appropriate to assign it as such, it'd be interesting to determine why they did that :-) |
||
|
|
