Будь ласка, врахуйте цей код. Цей тип коду я бачив уже кілька разів. words
- локальний вектор. Як можливо повернути його з функції?
Чи можемо ми гарантувати, що він не помре?
std::vector<std::string> read_file(const std::string& path)
{
std::ifstream file("E:\\names.txt");
if (!file.is_open())
{
std::cerr << "Unable to open file" << "\n";
std::exit(-1);
}
std::vector<string> words;//this vector will be returned
std::string token;
while (std::getline(file, token, ','))
{
words.push_back(token);
}
return words;
}
std::vector<std::string>&