#include <cstdlib> unsigned long strtoul( const char *start, char **end, int base );
函数 strtoul() 的行为与 strtol() 完全相同,只不过它返回一个 unsigned long 而不是一个简单的 long。
unsigned