int to string

int i=9;

stringstream stream;
stream << i;
stream.str()

原文地址:https://www.cnblogs.com/ahuo/p/5714327.html