在C++11中增加了string的字符串以及整数之间的转换函数
标准增加了全局函数。
std::to_string
std::stoi
std::stol
std::stoll
用来将整型转换为字符串
for (size_t i = 0; i < 14; i++)
{
string fileName = "chID"+std::to_string(i)+".hex";
}