创建型模式-简单工厂

简单工厂(Simple Factory)


class Factory
{
Object CreateObject(int type)
{
switch()
{
case 1:
return new Object1();

case 2:
return new Object2();

}


return null;
}

}


创建型模式-简单工厂_第1张图片

你可能感兴趣的:(创建型模式-简单工厂)