我有一个数组中的字符串:
this->ramStringInput[titleIndex][0];
和string..int,它是循环的索引:
std::to_string(titleIndex)
我试过了:
this->ramStringInput[titleIndex][0] + std::to_string(titleIndex)
但这是一个文字“Title1”。这不是我想要做的。
有没有办法连接这两个vars来访问这个> Title1?
getline (cin, this->ramStringInput[titleIndex][0] + std::to_string(titleIndex)); //not working
VS
getline (cin, this->Title1); //Would work, but can't do from a loop.