#include <cstdlib> long atol( const char *str );
atol() 函数将 str 转换为 long,然后返回该值。atol() 将从 str 中读取,直到找到任何不应出现在 long 中的字符。然后将截断后的结果值转换并返回。例如,
x = atol( "1024.0001" );
将导致 x 设置为 1024L。