标签: c++ file try-catch
这是对的吗?写:
try { fstream file; file.open(....); f(x); // this function may throw an exception ... file.close(); } catch { ... }
我想知道如果try块中的函数抛出异常,文件是否会被关闭?