6

// Compiler Error当在所有其他情况下都正确推断出类型时,为什么不能在下面代码中标记的行上推断出要调用的正确重载?

public static class Code {

    private static void Main() {

        OverloadedMethod<string>(() => new Wrapper<string>()); // OK
        OverloadedMethod<string>(() => MethodReturningWrappedString()); // OK
        OverloadedMethod<string>((Func<Wrapper<string>>)MethodReturningWrappedString); // OK
        OverloadedMethod<string>(MethodReturningWrappedString); // Compiler Error

    }

    public static Wrapper<string> MethodReturningWrappedString() {
        return new Wrapper<string>();
    }

    public static void OverloadedMethod<T>(Func<Wrapper<T>> func) where T : class {
    }

    public static void OverloadedMethod<T>(Func<T> func) where T : class {
    }

    public struct Wrapper<T> where T : class {
    }

}

这是编译器错误:

The call is ambiguous between the following methods or properties:
'Namespace.Code.OverloadedMethod<string>(System.Func<Namespace.Code.Wrapper<string>>)'
and 'Namespace.Code.OverloadedMethod<string>(System.Func<string>)'
4

1 回答 1

2

因为方法组MethodReturningWrappedString可以转换为类型Func<Wrapper<T>>的委托和类型的委托,Func<U>以获得合适的值TU

重载决议规则没有规定第一次转换严格优于第二次,因此转换不明确并导致编译器错误。

于 2014-07-03T22:37:44.730 回答