ASP.NET 应用程序状态与静态对象
如果我有一个标准的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自: http://support.microsoft.com/default.aspx ?scid=kb;en-us;Q312607
另外,是的,静态变量的行为方式相同,无论它们从何处加载,并且每个应用程序域仅存在一次(除非您正在谈论那些标记为 [ThreadStatic] 的变量)
From: http://support.microsoft.com/default.aspx?scid=kb;en-us;Q312607
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])