摘要: string itos(int i){ stringstream stream; string s; stream<<i; s = stream.str(); return s; } 阅读全文
posted @ 2016-11-22 11:39 codingtao 阅读(409) 评论(0) 推荐(0)