Java 中的同步块在 C# ASP.NET 中的等价物是什么?
我知道在使用会话时Java,您总是应该用同步块包围会话的使用,以防用户同时使用两个浏览器加载您的页面。
C# 中是否有等效的关键字/块可以完成相同的操作?
Possible Duplicate:
C# version of java's synchronized keyword?
I know that when working with a session in Java, you were always supposed to surround use of the session with a synchronized block incase the user would load your page with two browsers at the same time.
Is there an equivalent keyword/block in C# for doing the same thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 lock 语句或使用
[MethodImpl(MethodImplOptions.Synchronized)]
< /a> 属性允许一次仅从单个线程访问此块/方法。You could use the lock statement or decorate a method with the
[MethodImpl(MethodImplOptions.Synchronized)]
attribute to allow access to this block/method only from a single thread at a time.