sting转换为long

sting转换为long
long  strtolong( const   string   & s)
{
    
long  result = 0 ;
    
for ( int  i = 0 ;i < s.size();i ++ )
    {
        result
= 10 * result + s[i] - ' 0 ' ;
    }
    
return  result;
}
int  _tmain( int  argc, _TCHAR *  argv[])
{
    
string  s = " 2345 " ;
    cout
<< strtolong(s) << endl;
    
return   0 ;
}

你可能感兴趣的:(sting转换为long)