2

我有这种情况:

public class FOO<T> where T : IBar
{
    private T _xxx;
    public Y(T xxx)
    {
        if (xxx == null) throw new ArgumentNullException("xxx");
        _xxx = xxx;
    }
}

public interface IBar 
{
    string XString { get; }
}

在构造函数中,我正在T检查null. 编译器正确地警告我,我正在检查null可能是值类型的东西,因为IBar它可以由结构实现。

如何约束T成为引用类型?

4

1 回答 1

5

典型的神话(甚至我之前得到的)是从接口派生的类型是隐式引用类型,但实际上并非如此。结构也可以有接口。

因此,您应该添加更多约束class以指示为引用类型

public class FOO<T> where T : class, IBar
于 2013-03-08T08:23:54.510 回答