- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
除了“what is so bad about singletons”:-),我有一个在业务逻辑层使用单例的 ASP.NET Web 应用程序,因此:
public class MyBusinessService
{
private static MyBusinessService mInstance = null;
public static MyBusinessService Instance
{
get { return mInstance; }
}
static MyBusinessService()
{
mInstance = new MyBusinessService();
}
}
我们主要将它们用于 Model View Presenter 中的依赖项架构。
它们还可以通过以下两种方式之一跨业务逻辑类使用。首先通过以下方式:
var myService = new MyBusinessService();
myService.DoSomething();
myService.DoSomethingElse();
或者,可以通过以下方式使用:
MyBusinessService.Instance.DoSomething();
MyBusinessService.Instance.DoSomethingElse();
首选哪种构造,为什么?我对单例模式本身是好是坏不感兴趣。
更新:好的,这个问题似乎很受欢迎。我猜是准单例。两全其美!我对重构模式/反模式/代码 hell 并不感兴趣。我更感兴趣的是了解所描述的两种用法的影响。
我们的 View (ASP.NET 页面)如下所示:
var presenter = new SomeViewPresenter(this, MyBusinessService.Instance);
但也可以实现为:
var presenter = new SomeViewPresenter(this, new MyBusinessService());
在这种情况下,我更喜欢前者。注意singleton这个词的用法和上面的不正确用法都理解了,但是就代码而言,这两个原始选项的结果是什么?
最佳答案
后者是首选,因为前者的行为不像单例 - 您正在实例化一个新实例而没有任何保护措施来停止多个现有实例。
如果您将这些保护措施放在适当的位置,则后者可能是您最终得到的代码。您也不需要一直使用该属性:
var service = MyBusinessService.Instance;
service.This();
service.That();
我也以一些怀疑的态度看待 ASP.NET 中的静态,这是来自 WinForms 开发人员:-)
关于c# - 使用单例设计模式时,首选哪种结构,为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7904465/
我最近购买了《C 编程语言》并尝试了 Ex 1-8这是代码 #include #include #include /* * */ int main() { int nl,nt,nb;
早上好!我有一个变量“var”,可能为 0。我检查该变量是否为空,如果不是,我将该变量保存在 php session 中,然后调用另一个页面。在这个新页面中,我检查我创建的 session 是否为空,
我正在努力完成 Learn Python the Hard Way ex.25,但我无法理解某些事情。这是脚本: def break_words(stuff): """this functio
我是一名优秀的程序员,十分优秀!