Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
同期されたキーワードによる暗黙的なロックを好む良いユースケースはありますか?
一般的に考慮すべきことは、synchronizedロックオンthisすることです(静的メソッドであるかどうかに応じて、クラスのインスタンスのいずれか)。これは、別のクラスが を持つインスタンスにアクセスできる場合synchronized、同じオブジェクトをロックできることを意味します。
synchronized
this
したがって、一般的に、private finalフィールドを明示的に同期/ロックすることがベスト プラクティスと見なされます。
private final