如果锁定的对象内部发生异常,它会保持锁定状态吗?
- 作者: 梁书记i
- 来源: 51数据库
- 2023-02-08
问题描述
在 c# 线程应用程序中,如果我要锁定一个对象,假设是一个队列,如果发生异常,该对象会保持锁定状态吗?伪代码如下:
In a c# threading app, if I were to lock an object, let us say a queue, and if an exception occurs, will the object stay locked? Here is the pseudo-code:
int ii;
lock(MyQueue)
{
MyClass LclClass = (MyClass)MyQueue.Dequeue();
try
{
ii = int.parse(LclClass.SomeString);
}
catch
{
MessageBox.Show("Error parsing string");
}
}
据我了解,catch 之后的代码不会执行 - 但我一直想知道锁是否会被释放.
As I understand it, code after the catch doesn't execute - but I have been wondering if the lock will be freed.
推荐答案
First;你考虑过 TryParse 吗?
First; have you considered TryParse?
in li;
if(int.TryParse(LclClass.SomeString, out li)) {
// li is now assigned
} else {
// input string is dodgy
}
锁会被释放有两个原因;首先,lock本质上是:
The lock will be released for 2 reasons; first, lock is essentially:
Monitor.Enter(lockObj);
try {
// ...
} finally {
Monitor.Exit(lockObj);
}
第二;您捕获并且不重新抛出内部异常,因此 lock 实际上永远不会看到异常.当然,您在 MessageBox 的持续时间内持有锁,这可能是个问题.
Second; you catch and don't re-throw the inner exception, so the lock never actually sees an exception. Of course, you are holding the lock for the duration of a MessageBox, which might be a problem.
因此它将在除最致命的灾难性不可恢复异常之外的所有异常中释放.
So it will be released in all but the most fatal catastrophic unrecoverable exceptions.
- C#通过fleck实现wss协议的WebSocket多人Web实时聊天(附源码)
- 团队城市未满足要求:MSBuildTools12.0_x86_Path 存在
- 使用 MSBuild.exe 在发布模式下构建 C# 解决方案
- 当我发布 Web 应用程序时,AfterPublish 脚本不运行
- 构建时 T4 转换的产品仅在下一个构建中使用
- ASP.NET Core Application (.NET Framework) for Windows x64 only error in project.assets.json
- 新的 .csproj 格式 - 如何将整个目录指定为“链接文件"到子目录?
- 如何将条件编译符号(DefineConstants)传递给 msbuild
- MSBuild 支持 Visual Studio 2017 RTM 中的 T4 模板
- NuGet 包还原找不到包,没有源
