In .NET a value type (C# struct
) can't have a constructor with no parameters. According to this post this is mandated by the CLI spec. What happes is that for every value-type a default constructor is created (by the compiler?) which initialized all members to zero (or null
).
Does anyone know why it is disallowed to define such a default constructor?
One trivial use is for rational numbers
public struct Rational {
private long numerator;
private long denominator;
public Rational(long num, long denom)
{ /* Todo: Find GCD etc. */ }
public Rational(long num)
{
numerator = num;
denominator = 1;
}
public Rational() // This is not allowed
{
numerator = 0;
denominator = 1;
}
}
Using current C# a default Rational is 0/0
which is not so cool.
P.S. Will default parameters help solve this for C#4.0 or will the CLR defined default constructor be called?
Edit: Jon Skeet answered:
To use your example, what would you want to happen when someone did:
Rational[] fractions = new Rational[1000];
Should it run through your constructor 1000 times?
Sure it should, that's why I wrote the default constructor in the first place, the CLR should use the default zeroing constructor when no explicit default ctor is defined, that way you only pay for what you use. Then if I want a container of 1000 non default Rational
s (and want to optimize away the 1000 constructions) I will use a List<Rational>
rather than an array.
This reason, in my mind, is not strong enough to prevent definition of a default constructor.