Eclipse支持try-with-resource,有点像这样:
try(Outputstream resource = new FileOutputStream(file)){
// do something...
}
自从这个特色添加到eclipse以来已经有好几年了,但是没有模板“try-with-reousource”。只存在一个是“try-catch”。
我尝试制作模板,例如try($type{} ${localVar} = new $type{}){ {$cursor{} }
,但没用。 (也建议使用非AutoClosable类型)
是否有任何有用的资源试用模板?
答案 0 :(得分:1)
Eclipse中没有“try-with-resource”模板。
有一个未解决的问题:Bug 351864 - [1.7][templates] Add 'try-with-resource' template