C#:单例模式和静态模式之间的区别

发布于 2024-10-31 04:32:48 字数 305 浏览 1 评论 0原文

可能的重复:
静态类和单例模式之间的区别?

我正在考虑C# 上的静态类和单例模式之间的选择。

你知道静态类是如何创建的吗? 特别是,我想知道静态类在程序执行期间是否唯一,以及单例模式的优点或缺点是什么。

先感谢您。

Possible Duplicate:
Difference between static class and singleton pattern?

I'm thinking about the choice between Static classes and Singleton pattern on C#.

Do you know how static classes are created?
In particular, I would know if a static class is unique during program execution and what are pro or cons against Singleton pattern.

Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

计㈡愣 2024-11-07 04:32:48

静态类不能被实例化。
单例可以实例化一次。

有关单例模式使用的讨论

还有更多内容

A static class can not be instanciated.
A singleton can be instanciated once.

Discussion about the use of the Singleton pattern

And more here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文