编程语言
首页 > 编程语言> > java – eclipse try-with-resource模板?

java – eclipse try-with-resource模板?

作者:互联网

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类型)

是否有任何有用的资源尝试模板?

解决方法:

Eclipse中没有“try-with-resource”模板.

有一个未解决的问题:Bug 351864 – [1.7][templates] Add ‘try-with-resource’ template

标签:java,eclipse,templates,try-with-resources
来源: https://codeday.me/bug/20190708/1404934.html