vote up 3 vote down star
1

I have a c# struct where I need to forbid calling the no args constructor on it.

MyStruct a;
/// init a by members   // OK
MyStruct b = MyStruct.Fact(args); // OK, inits by memebers

MyStruct s = new MyStruct(); // can't have that

I'm doing this mostly to force explicet values for all members as there are no valid default values and all members must have valid values.

In C++ this would be easy, add a private constructor but c# doesn't allow that.

Is there a way to prevent the above?

I really need to enforce using a factory so preventing all public constructor calls would work just as well.


Full discloser: to avoid a mono dependency, the c# app is being automatically translated to D where new Struct() results in a pointer and this is mucking things up for me. However this question is relevant despite that so just ignore it.

flag

50% accept rate
I love the idea of a "public constrictor" - maybe as a punishment for obscure crimes? – xan Dec 4 '08 at 20:35

4 Answers

vote up 10 vote down check

You can't. All structs have a public parameterless constructor by definition in C#. (In the CLR almost none of them do, but they can always act as if they have.) See this question for why you can't define your own parameterless constructors on structs (in C#, anyway).

In fact, you can prevent this statement if you're happy to write your value type in IL. I've just checked, and if you make sure that your value type only has a parameterless constructor, and make it internal, you won't be able to write MyStruct ms = new MyStruct(); But this doesn't prevent:

MyStruct[] array = new MyStruct[1];
MyStruct ms = array[0];

which works around the new restriction - so it doesn't really buy you anything. That's quite good really, as messing around in IL would be messy.

Are you sure you really want to be writing a struct in the first place? That's almost never a good idea.

link|flag
Crud.... & Yes, I need value semantics and the fact I'm throwing these things around like popcorn plus some "extra" constraints result in a major perf hit if I switch to classes – BCS Dec 4 '08 at 20:41
Have you measured the performance to know for sure that it would actually be a perf hit? Try it with a class, making it immutable to keep the value type semantics. – Jon Skeet Dec 4 '08 at 20:45
Hee - messing around in il is messy. You are my tautological hero, Jon. – plinth Dec 4 '08 at 20:48
Re: perf the hit is in the constructors (See the new disclosure) when memory is allocated. – BCS Dec 4 '08 at 20:55
I would fix it to be less tautological, but then it would mess up your comment ;) – Jon Skeet Dec 4 '08 at 20:56
show 5 more comments
vote up 3 vote down

You can't.

All values in a struct must be initialized at construction time, and there's no way to do that outside the constructor.

What exactly are you trying to accomplish by doing that? Structs are value types, so you'll get a "new" struct for most operations. It will be very difficult to enforce the sorts of constraints you'd use a factory for on a struct.

link|flag
you can in a static method in the struct, as my factory method does. – BCS Dec 4 '08 at 20:46
The primary constraint is to disallow default initializations. I want to force the code to explicitly provide all the values. – BCS Dec 4 '08 at 20:52
vote up 2 vote down

Anyone can create a struct at any time without calling a constructor, as long as they have access to the struct. Think about it this way:

If you create an array of objects with 1000 elements, they all get initialized to null, so no constructors are called.

With structs, there is no such thing as null. If you create an array with 1000 DateTime objects, they are all initialized to zero, which equals DateTime.Min. The designers of the runtime chose to make it so you could create an array of structs without calling the constructor N times--a performance hit many people wouldn't realize was there.

Your factory idea is a good one, though. Would it meet your needs to create an interface and expose that, but make the struct private or internal? That's about as close as you'll get.

link|flag
vote up 0 vote down

Put it in its own assembly and have the MyStruct() without the args as a Internal (Friend in VB). Have the Factory in the same assembly as MyStruct() but with a Public accessor.

Now the factory can access the no args MyStruct, but anything calling from outside the assembly must use the Factory.

Edit: My bad, I failed to take into account that this is a struct. You can't do this with a struct, only with a class - in which case, my previous statement stands.

link|flag
You can't write your own paramaterless constructors for value types, so you can't define one to be internal. – Jon Skeet Dec 4 '08 at 20:38
...or Reflection, but yeah, you've got the best answer I can think of. – Matt Cruikshank Dec 4 '08 at 20:38
Jon: Yeah, you're right - I instantly read this as Class - my mistake. You would have to make the struct a class. – BenAlabaster Dec 4 '08 at 20:41

Your Answer

Get an OpenID
or

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