¿Debo llamar manualmente close()
cuando uso un std::ifstream
?
Por ejemplo, en el código:
std::string readContentsOfFile(std::string fileName) {
std::ifstream file(fileName.c_str());
if (file.good()) {
std::stringstream buffer;
buffer << file.rdbuf();
file.close();
return buffer.str();
}
throw std::runtime_exception("file not found");
}
¿Necesito llamar file.close()
manualmente? ¿No debería ifstream
hacer uso de RAII para cerrar archivos?