try-with-resources和try catch的区别
时间: 2023-06-04 08:07:26 浏览: 189
Java如何优雅地关闭资源try-with-resource及其异常抑制
try-with-resources 和 try catch 的区别在于,try-with-resources 可以在 try 语句块结束后自动关闭相关资源,而 try catch 则需要手动关闭资源。另外,try-with-resources 可以在一个 try 语句块中同时管理多个资源,而 try catch 则需要多次嵌套 try catch 语句块来管理多个资源。
阅读全文