Ben manuel çağrı gerekiyor mu close()
ben kullandığınızda std::ifstream
?
Örneğin, kodda:
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");
}
file.close()
Manuel olarak aramam gerekir mi? Olmamalı ifstream
faydalanmak de ray dosyaları kapatmak için?