在Visual Studio中使用工厂设计模式的麻烦

时间:2012-11-15 21:17:07

标签: c# visual-studio-2010 factory-pattern

我在实施工厂设计模式时遇到了麻烦。我看了看 http://dotnet.dzone.com/articles/design-patterns-c-factory, 因为这是我一段时间以前发现的第一个好例子,因此它非常贴近我的设计 我看了看 Abstract Factory Design Pattern, 但我的设计非常不同,我无法决定是否需要它。

现在,这就是它的样子。过去更简单,我的CR5,界面,工厂,CB_spec,El等在同一个视觉工作室项目中。我不得不按照设计讨论的方式移动东西,并且需要将CR6等分开。现在我遇到了一些编译问题,我不知道该怎么办。见下文。我的问题是关于下面的两个编译问题。

我的iCR Visual Studio项目:

    public interface iCR
    {
        int CB_IO_Init(int slaveIndex);
        int WritePortReady();
        int WritePortBusy();
        void initCRData(byte[] writeBuffer, byte[] statusBuffer, int SlaveIndex, USB_Comm.CB cb, int cr_Type);
        int ProcessTWriting(ref Byte[] writeDat, ref Byte[] statusDat, ref Byte[] dataDumpWriteCheck);
        void Failure(String message);
        void Success(String message);

    }

我的CR_Factory Visual Studio项目

namespace CR_Factory
{

public class Cr
{

}  

public class CRFactory
{
    public enum CRType
    {
        CR0,
        CR1,
        CR3,
        CR4,
        CR5,
        CR6
    }

    public CRFactory()
    {
    }

    public iCR GetCR(CRType type) 
    {
        iCR cr = null;
        switch (type)
        {
            case CRType.CR5:
                cr = new CR5(); //**compile error..Cannot implicitly convert type ‘CR5’ to iCR’. An explicit conversion exists (are you missing a cast?)
                break;
            case CRType.CR6:
                //not done yet
                break;
            default:
                throw new ArgumentException(string.Format("A CR of type {0} cannot be found", Enum.GetName(typeof(CRType), type)));
        }
        return cr;
    }

    public CRType DetermineCR_Type(int type)
    {
        switch (type)
        {
            case 0:
                return CRType.CR0;
            //break;
            case 1:
                return CRType.CR1;
            case 3:
                return CRType.CR3;
            case 4:
                return CRType.CR4;
            case 5:
                return CRType.CR5;
            case 6:
                return CRType.CR6;
            default:
                throw new ArgumentException(string.Format("A type of type {0} cannot be found", type));

        }
    }

    }
}

我的CR5 Visual Studio项目中有很多类,但是现在我只是向您展示工厂中提到的部分。稍后我将创建一个CR6 VS项目等:

public class CR5 : iCR
{        


    CB_703 cb_specific = null;

    //constructor
    public CR5()
    {
        cb_specific = new CB_703(SlaveIndex);
    }


    public int CB_IO_Init(int SlaveIndex)
    {
        int result = -534;
        result = cb_specific.IO_Init(SlaveIndex);
        return result;
    }
.
.
.
}

我有另一个Visual Studio项目(实际上有几个)实例化工厂并获得适当的类型。我们称之为El:

namespace CrWr
{

public partial class PControl : UserControl
{
    //setup 

    //constructor
    public PControl()
    {

    }

    /// <summary>
    /// Get the P Control for chosen dll
    /// </summary>
    public Control GetPControl(USB_Comm.CB cbInstance, string dllSelected, THandlerApplication.Temp.TEMP[] temp, string dll, SC.SC.S_C c0)
    {
        cb = cbInstance;
        createControls();
        itsDll = dll;
        tArr = temp;
        cert = c0;

        CR_Factory.CRFactory factory = new CR_Factory.CRFactory();
        CRFactory.CRType type = factory.DetermineCR_Type(cr_Type);
        try
        {
            cr = factory.GetCR(type); //**compile error GetCR is not supported by the language
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.InnerException);
        }
        return this;
    }

private void OnP()
    {
        int result = -536;

        while (rL)
        {
            result = cr.CB_IO_Init(SlaveIndex); 
            if (result == 0)
            {
                …
            }
        }

.
.
.
}

2 个答案:

答案 0 :(得分:1)

我的猜测是你的各种项目都引用了不同版本的.Net运行时或平台配置文件。我怀疑是你的CR5项目是要检查的。工厂正在返回一个对象,消费者的目标框架无法使用该对象。 (即,CR5是.Net 4,而工厂/消费者是.Net 3.5 / 2或ClientProfile - 虽然最后一个可能有用,但我并没有真正搞乱不同的项目类型。)

答案 1 :(得分:0)

问题在于我在我的interface参数和CR5项目中都引用了同一个类。由于它是循环的,它导致了奇怪的编译错误。这种情况发生在我搬家时为工厂准备使用CR6类。