- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试以正确的方式实现工厂模式,但我不确定这是否正确。我有三个从基类派生的模型类,如下所示:
class BaseStyle
{
public string Name
{
get;
set;
}
}
class PointStyle : BaseStyle
{
public PointStyle(string name)
{
Name = name;
}
}
class LineStyle : BaseStyle
{
public LineStyle(string name)
{
Name = name;
}
}
class PolyStyle : BaseStyle
{
public PolyStyle(string name)
{
Name = name;
}
}
然后我有一个名为 StyleFactory 的类。此类采用 string
来确定要创建的 Style 类型并返回该 Style。
public class StyleFactory
{
public static BaseStyle CreateStyle(string styleType)
{
if (styleType == "point")
{
return CreatePointStyle();
}
if (styleType == "line")
{
return CreateLineStyle();
}
if (styleType == "poly")
{
return CreatePolytStyle();
}
}
private static PointStyle CreatePointStyle()
{
//creates a pointstyle
}
private static LineStyle CreateLineStyle()
{
//creates a linestyle
}
private static PolyStyle CreatePolyStyle()
{
//creates a polystyle
}
}
然后在代码中这样调用它:
PointStyle pointStyle = StyleFactory.CreateStyle("point");
这是解决问题的最佳方法吗?我应该将三个“创建”函数拆分为它们自己的单独类吗?使用泛型会更有意义吗?
最佳答案
考虑调用者必须使用该方法的方式:
//Existing
BaseStyle someStyle = factory.CreateStyle("point", name);
这里有两个问题。其中之一是没有对字符串“point”进行编译时评估;为了缓解这个问题,您可以使用常量字符串或类似的东西。第二个是返回的对象只是一个BaseStyle
;为了做任何有趣的事情,客户总是不得不施放它。所以实际上代码看起来像这样:
//Practical use of existing
PointStyle pointStyle = (PointStyle)factory.CreateStyle(Constants.StylesPoint, name);
我们可以用泛型来解决这两个问题。如果我们以正确的方式定义方法,返回类型会在编译时自动为我们选择。这也意味着类型的选择是在编译时检查的,所以我们不必担心字符串是错误的。调用的示例:
//Using generics
PointStyle pointStyle = factory.CreateStyle<PointStyle>(name);
为了允许调用者以这种方式使用该方法,我们定义了一个类型参数:
public T CreateStyle<T>(string name) where T : BaseStyle
{
var type = typeof(T);
if (type == typeof(PointStyle))
{
return new PointStyle(name) as T;
}
if (type == typeof(LineStyle))
{
return new LineStyle(name) as T;
}
if (type == typeof(PolyStyle)
{
return new PolyStyle(name) as T;
}
throw new Exception("The type {0} is not supported.", typeof(T).FullName);
}
或者如果你想聪明一点:
public T CreateStyle<T>(string name) where T : BaseStyle
{
try
{
return Activator.CreateInstance(typeof(T), new [] { name } );
}
catch(MissingMethodException exception)
{
throw new InvalidOperationException("The specified style does not have an appropriate constructor to be created with this factory.", exception);
}
}
最后一种方法不需要维护以在以后添加其他样式;只要它们继承自 BaseStyle,并且包含一个接受名称作为单个字符串参数的构造函数,工厂就能够自动生成它们。
补充说明:
虽然静态工厂方法在几年前风靡一时,但如今它们通常作为实例 方法实现,因此您可以在IoC 下注入(inject)工厂。 .如果将方法设为静态,则任何调用它的代码都将具有静态依赖性,这很难进行 stub 和单元测试。
关于c# - 工厂的正确实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55108958/
我应该执行以下操作: 可能通过服务/工厂,使用 $q(异步)查询 API 以获取大型名称数据集 有另一个服务(也是异步的),它应该只返回上述工厂的元素,如果它们与某个字符串(搜索字段)匹配。目的是缩小
我有一个通用的基类。我有一个实现基类的具体类。 我将如何创建工厂类/方法来交付不同类型的具体类? 举个例子: public class ReceiverBase where T : IInte
我正在查看以下链接中的 Ninject Factory 扩展: http://www.planetgeek.ch/2011/12/31/ninject-extensions-factory-intro
工厂、提供商和服务这三个术语之间有什么区别? 刚刚了解 NHibernate 及其存储库模式(POCO 类等)。 最佳答案 工厂:通过将一堆位组合在一起或基于某种上下文选择类型来组装类 Provide
使用CGLIB我可以做到 final var enhancer = new Enhancer(); enhancer.setUseCache(false); enhancer.setSuperclas
我试图在 Kotlin 中使用伴随对象工厂方法(相当于 Java 中的静态工厂方法)创建一个嵌套内部类。这是我的代码的简化版本。 class OuterClass { var myData:L
我正在为我的大学做一个项目,但遇到了问题。 基本上,该项目由一个客户端-服务器应用程序组成,我想创建一个用于通信的 Packet 类。数据包由 header 和主体组成。现在问题来了。我可以有一些不同
这个问题在这里已经有了答案: Why doesn't polymorphism work without pointers/references? (6 个答案) What is object sl
我正在制作一个套接字工厂。我希望每个外部应用程序都使用 Socket 类的接口(interface),它是几个类(ServerSocketTCP、ClientSocketTCP、ServerSocke
我是 angularjs 的新手,我正在尝试创建一个小型电影数据库。这是我第一次使用工厂,我想确保这是正确的方法,以及如何在另一个功能中使用这个工厂,如下所示? 我希望这个工厂只运行一次,这样我就可以
这个问题在这里已经有了答案: Java inner class and static nested class (28 个答案) 关闭 5 年前。 public class DataFactory
我看过很多关于 C++ 工厂的帖子,但到目前为止我还没有看到解决我的问题的解决方案。 (虽然我可能遗漏了一些东西。) 示例控制台应用程序: #include #include #include
这是一个简单的 C++ 项目,有 2 种设计模式:单例和工厂,sigleton 也是一个模板化类,一个接口(interface) (IHash) 和一个类 (Hash1)。一个简单的工厂类 (Hash
这个问题类似于Factory and generics ,并且可能有相同的答案,但它是不同的。我有一个通用基类,它将由完全独立的 JAR 中的类进行扩展。所述 JAR 应该能够在不更改任何其他代码的情
问题是我需要为传递的类创建一个新实例 有没有办法重写这个函数,让它可以接受任意数量的参数? function createInstance(ofClass, arg1, arg2, arg3, ...
我想用简单的 C++ 语法创建一个简单的工厂方法: void *createObject(const char *str,...) { if(!strcmp("X",str)) retu
经过大约 10 个月的程序化 PHP 学习后,我现在正尝试着手研究基本的 OOP 原则和设计模式。这是一个爱好,我没有那么多时间去追求它,所以请原谅这个问题的水平很低。 我的网站(目前 100% 程序
我有一个简单的问题。 我如何编写一个工厂来定义使用 make() 或 create() 的关系,具体取决于原始调用 make() 还是 create()? 这是我的用例: 我有一个简单的工厂 /**
我正在尝试在延迟加载模块中提供 APP_BASE_HREF 注入(inject) token ,然而,工厂方法根本没有被调用。 在这里https://github.com/MaurizioCascia
我有以下 ast: import { factory as f } from 'typescript' const typeDeclaration = f.createTypeAliasDeclara
我是一名优秀的程序员,十分优秀!