2

我想避免用 new 实例化某些类,并强制使用工厂类。

但我不明白该怎么做。

有人可以给我看一个小样本吗?

在此先感谢您的帮助,最好的问候

4

2 回答 2

1

这应该让你开始。您将需要添加自己的逻辑来确定是否应允许任何给定类型的实例通过 newing 实例化。

public override ProblemCollection Check(Member member)
{
    if (member is Method)
    {
        this.Visit(member);
    }

    return this.Problems;
}

public override void VisitConstruct(Construct construct)
{
    base.VisitConstruct(construct);

    if (!this.AllowTypeToBeNewed(construct.Type))
    {
        this.Problems.Add(new Problem(this.GetResolution(), construct));
    }
}

private bool AllowTypeToBeNewed(TypeNode type)
{
    throw new NotImplementedException();
}
于 2009-11-18T16:59:59.080 回答
1

这个人解释的很好

http://www.guysmithferrier.com/downloads/FxCop.pdf

于 2009-12-29T06:14:04.337 回答