摘要:        
int 转string: #include<sstream> string str = "123"; int i; stringstream ss; ss<<str; ss>>i; string 转int: string str; int n = atoi(str.c_str()); 或; int     阅读全文
            
                posted @ 2018-02-23 13:36
LeahLCY
阅读(97)
评论(0)
推荐(0)
            
        
                    
                
        2018年2月23日