So for instance you have a type like:

public class EffectOptions
{
    public EffectOptions ( params object [ ] options ) {}

    public EffectOptions ( IEnumerable<object> options ) {}

    public EffectOptions ( string name ) {}

    public EffectOptions ( object owner ) {}

    public EffectOptions ( int count ) {}

    public EffectOptions ( Point point ) {}

}

Here I just give the example using constructors but the result will be the same if they were non-constructor methods on the type itself, right?

So when you do:

EffectOptions options = new EffectOptions (null);

which constructor would be called, and why?

I could test this myself but I want to understand how the overload resolution system works (not sure if that's what it's called).

link|improve this question

If it's not ambiguous, then it will call the "most specific" constructor. How "most specific" is defined is in the spec. See stackoverflow.com/questions/3674368/… for related information and links to the relevant (at least some relevant) parts of the specification. – Jim Mischel Mar 2 '11 at 21:01
feedback

3 Answers

up vote 15 down vote accepted

For the exact rules, see the overload resolution spec. But briefly, it goes like this.

First, make a list of all the accessible constructors.

public EffectOptions ( params object [ ] options )
public EffectOptions ( IEnumerable<object> options ) 
public EffectOptions ( string name )
public EffectOptions ( object owner ) 
public EffectOptions ( int count ) 
public EffectOptions ( Point point )

Next, eliminate all the inapplicable constructors. An applicable constructor is one where every formal parameter has a corresponding argument, and the argument is implicitly convertible to the formal parameter type. Assuming that Point is a value type, we eliminate the "int" and "Point" versions. That leaves

public EffectOptions ( params object[] options )
public EffectOptions ( IEnumerable<object> options ) 
public EffectOptions ( string name )
public EffectOptions ( object owner ) 

Now, we have to consider whether the one with "params" is applicable in its expanded or unexpanded form. In this case it is applicable in both forms. When that happens, we discard the expanded form. So that leaves

public EffectOptions ( object[] options )
public EffectOptions ( IEnumerable<object> options ) 
public EffectOptions ( string name )
public EffectOptions ( object owner ) 

Now we must determine the best of the applicable candidates. The bestness rules are complicated, but the short version is that more specific is better than less specific. Giraffe is more specific than Mammal, Mammal is more specific than Animal, Animal is more specific than object.

The "object" version is less specific than all of them, so it can be eliminated. The IEnumerable<object> version is less specific than the object[] version (do you see why?) so it can be eliminated too. That leaves

public EffectOptions ( object[] options )
public EffectOptions ( string name )

And now we are stuck. object[] is neither more nor less specific than string. Therefore this gives an ambiguity error.

That is just a brief sketch; the real tiebreaking algorithm is much more complicated. But those are the basics.

link|improve this answer
Thanks Eric, appreciate the response. I am not exactly sure why object[] is more specific than IEnumerable<object>. Is it because IEnumerable is using generics? – Joan Venge Mar 2 '11 at 23:33
4  
@Joan: Every giraffe is an animal, but not every animal is a giraffe. Therefore giraffe is more specific than animal. Every object[] is an IEnumerable<object>, but not every IEnumerable<object> is an object[]. Therefore object[] is more specific than IEnumerable<object>. – Eric Lippert Mar 2 '11 at 23:49
Thanks Eric, I never thought of it that way. – Joan Venge Mar 3 '11 at 0:01
feedback

In this case the C# compiler won't pick any constructor and instead will error. The value null is legal for several of the available constructors and there is insufficient tie breaking logic to pick one hence it produces an error.

The C# compiler overload resolution logic is a complex process but a short (and inherently incomplete) overview of how it works is as follows

  • Collect all members with the given Name
  • Filter the members to those with parameter lists that are compatible with the provided arguments and with the appropriate accessibility
  • If the remaining members has more than one element, employ tie breaking logic to choose the best of them

The full details are listed in section 7.4 of the C# language spec. And I'm sure Eric will be along shortly to give a much more accurate description :)

link|improve this answer
Thanks Jared. What do you mean by "inherently incomplete"? You mean it's missing some functionality? – Joan Venge Mar 2 '11 at 21:04
@Joan, I mean that my 3 bullet item summary doesn't contain lots of little details inherent to overload resolution: operators, named + optional argument resolution, issues with overrides vs new, etc ... The C# lang spec has the full details (and takes about 4-5 pages to explain it all). – JaredPar Mar 2 '11 at 21:06
Thanks Jared, when it read it again, I see the meaning. – Joan Venge Mar 2 '11 at 21:06
feedback

While this article is tagged with VB, I believe C# functions the same way. As Jared stated in his answer, if it cannot pick an overload, it will throw an error.

http://msdn.microsoft.com/en-us/library/tb18a48w(v=VS.100).aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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