class MyResource implements Closeable{
@Override
public void close() throw IOException{
}
}
try( myResource = new MyResource() ){ // no need to write finally block to release resource, java will automatially close this resource.
}catch(Exception e){
}