Are there any differences between Java's “synchronized” and C#'s “lock”?

前端 未结 3 1884
栀梦
栀梦 2020-12-10 13:01

Do these two keywords have exactly the same effect, or is there something I should be aware of?

相关标签:
3条回答
  • 2020-12-10 13:20

    I java you don't have to worry about locking public types that you own.

    In .NET, you have to

    Updated: this is for types that you own. Locking on public types that you don't own is bad in any language :)

    0 讨论(0)
  • 2020-12-10 13:39

    According to this site: http://en.csharp-online.net/CSharp_FAQ:_What_is_the_difference_between_CSharp_lock_and_Java_synchronized, C# lock and Java synchronized code blocks are "semantically identical", while for methods, Java uses synchronized while C# uses an attribute: [MethodImpl(MethodImplOptions.Synchronized)].

    0 讨论(0)
  • 2020-12-10 13:42

    One interesting difference not covered in the link posted by Keeg: as far as I'm aware, there's no equivalent method calls in Java for .NET's Monitor.Enter and Monitor.Exit, which the C# lock statement boils down to. That means you can't do the equivalent of Monitor.TryEnter either - although of course the java.util.concurrent.locks package (as of 1.5) has a variety of locks which have more features available.

    0 讨论(0)
提交回复
热议问题