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.
Try と Catch ブロックを追加せずに、Finally ブロックのみを使用できますか?
いいえ、できません。それは違いない:
try {} catch {} finally {}
また
try {} finally {}
tryブロックは、後続finallyが適用されるコードの領域を定義します。あなたが提案していることは、先行finallyするコードのブロック全体が暗黙的にtry.
try
finally
catchブロックはオプションです。
catch