Why are we not forced to instantiate a struct, like when using a class?

link|improve this question

feedback

6 Answers

up vote 8 down vote accepted

The why is simply - because the spec says so. The how is a matter of ensuring that the entire block of memory is "definitely assigned", which means: assigning a value to each field of the struct. However, this requires 2 nasty things:

  • public fields (almost always bad)
  • mutable fields (generally bad in a struct)

so in most best-practice cases, you do need to use the new(...) syntax, to invoke the constructor (or to zero-the memory, for the parameterless constructor) for the type correctly.

link|improve this answer
feedback

Why are we not forced to instantiate a struct with "new", like when using a class?

When you "new" a reference type, three things happen. First, the memory manager allocates space from long term storage. Second, a reference to that space is passed to the constructor, which initializes the instance. Third, that reference is passed back to the caller.

When you "new" a value type, three things happen. First, the memory manager allocates space from short term storage. Second, the constructor is passed a reference to the short term storage location. After the constructor runs, the value that was in the short-term storage location is copied to the storage location for the value, wherever that happens to be. Remember, variables of value type store the actual value.

(Note that the compiler is allowed to optimize these three steps into one step if the compiler can determine that doing so never exposes a partially-constructed struct to user code. That is, the compiler can generate code that simply passes a reference to the final storage location to the constructor, thereby saving one allocation and one copy.)

So now we can address your question, which you actually have asked backwards. It would be better to ask:

Why are we forced to allocate a class with "new", instead of simply being able to initialize the fields as with a struct?

You have to allocate a class with "new" because of those three things on the list. You need new memory allocated from the long-term storage and you need to pass a reference to that storage to the constructor. "new" is the operator that knows how to do that.

You don't have to call "new" on a struct because there is no need to allocate the "final" storage; the final storage already exists. The new value is going to go somewhere, and you already have obtained that storage by some other means. Value types do not need a new allocation; all they need is initialization. All you need to do is ensure that the storage is properly initialized, and you can often do that without calling a constructor. Doing so of course means that you run the risk of having a variable of value type that can be observed to be in a partially initialized state by user code.

Summing up: calling a ctor is optional for value types because no new memory needs to be allocated when initializing an instance of a value type and because skipping the constructor call means that you get to skip a short-term allocation and a copy. The price you pay for that performance gain is that user code can see a partially initialized structure.

link|improve this answer
I understand that when creating e.g. an array of some value type, or a struct or class with a value-type field, all items of the array, class, structure would exist before the constructor could be called on any of them. On the other hand, I'm curious what fundamental difficulties would exist, if any, with allowing structures to declare constant field initialization values? All that would mean would be that instead of filling the structure with zero, it would copy a constant template. For example, a field with legit values -1000000000 to 1000000000 could be initialized to -2147483648. – supercat Oct 14 '11 at 16:09
feedback

Because structs are value types and classes are reference types. So structs fall into the same category as int, double etc.

link|improve this answer
feedback

Because a struct is a value-type. When you declare a variable of it, the instance is immediateley there.

A constructor (the new operator) is therefore optional for a struct.

Consider

struct V { public int x = 0; }
class  R { public int y = 0; }

void F() 
{
   V a;   // a is an instance of V  
   R b;   // b is a reference to an R

   a.x = 1; // OK, the memory exists
 //b.y = 2; // error, there is no instance yet

   b = new R();  // allocates new memory
   a = new A();  // overwrites memory

}
link|improve this answer
well, only partially there; if you added Console.WriteLine(a.x); above the a.x = 1; line, it wouldn't compile. – Marc Gravell Oct 14 '11 at 12:45
@Marc: correct but not directly related to what I wanted to say. a.x exists but in not definitely assigned. – Henk Holterman Oct 14 '11 at 12:46
feedback

As said by David Heffernan and Henk Holterman its because structs are value types and hence instantiates while declaring it. For a better understanding about ValueType and ReferenceType, please check this link P Daddy has nicely explained it.

link|improve this answer
feedback

Additionally to what was posted: Note that a struct cannot have a parameterless constructor or have a initializer for any of its instance fields. The default value is having all value type fields set to their default value (ex. 0 for ints, false for bool, etc.) and all reference type fields to null.

Secondly, a struct is initialized, for example by calling a constructor or using default().

link|improve this answer
1  
Bzzz true in C#, false in .NET msmvps.com/blogs/jon_skeet/archive/2008/12/10/… The important quote: Yes, you can write a parameterless constructor for a value type in .NET – xanatos Oct 14 '11 at 12:50
@xanatos True, I was referring to the C# spec. – Daniel Rose Oct 14 '11 at 14:29
feedback

Your Answer

 
or
required, but never shown

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