在C ++中将concat string和int作为属性名称

时间:2018-01-10 01:24:11

标签: c++ arrays cin

我有一个数组中的字符串:

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.

0 个答案:

没有答案