字符到整数的小例程

int stringtoint(string str){
     
    stringstream ss;
    ss<<str;
    int x;
    ss>>x;
    return x;
}

你可能感兴趣的:(C++编程)