ASP.NET 应用程序状态与静态对象

发布于 2024-07-08 20:05:23 字数 174 浏览 8 评论 0原文

如果我有一个标准的 ASP.NET 应用程序,将对象设为静态与将对象实例置于应用程序状态之间有什么区别吗?

根据我的理解,这两个对象对于应用程序域都存在一次。

其次,如果 ASP.NET 站点的引用 dll 中有一个静态对象,会发生什么情况。 它也是应用程序域的一部分,所以它永远存在一次?

if i have a standard ASP.NET application, is there any difference between making an object static as opposed to putting the object instance in the Application state?

from my understanding, both objects exist ONCE for the app domain.

Secondly, what happens if you have a static object in a referenced dll, for an ASP.NET site. It's also part of the app domain, so it will always exist once?

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

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

发布评论

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

评论(1

诗酒趁年少 2024-07-15 20:05:23

来自: http://support.microsoft.com/default.aspx ?scid=kb;en-us;Q312607

ASP.NET 包括应用程序状态
主要是为了兼容
经典的ASP,这样更容易
将现有应用程序迁移到
ASP.NET。 建议您
将数据存储在静态成员中
应用程序类而不是
应用对象。 这增加了
性能,因为您可以访问
静态变量比你能更快
访问应用程序中的项目
字典。

另外,是的,静态变量的行为方式相同,无论它们从何处加载,并且每个应用程序域仅存在一次(除非您正在谈论那些标记为 [ThreadStatic] 的变量)

From: http://support.microsoft.com/default.aspx?scid=kb;en-us;Q312607

ASP.NET includes application state
primarily for compatibility with
classic ASP so that it is easier to
migrate existing applications to
ASP.NET. It is recommended that you
store data in static members of the
application class instead of in the
Application object. This increases
performance because you can access a
static variable faster than you can
access an item in the Application
dictionary.

Also, yes, static variables behave the same way regardless of where they are loaded from, and exist exactly once per app domain (unless you're talking about those labeled [ThreadStatic])

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