C ++ 11은 몇 가지 새로운 문자열 변환 함수를 추가했습니다.
http://en.cppreference.com/w/cpp/string/basic_string/stoul
여기에는 stoi (string to int), stol (string to long), stoll (string to long long), stoul (string to unsigned long), stoull (string to unsigned long long)이 포함됩니다. 그 부재에서 주목할만한 것은 stou (문자열에서 부호없는) 함수입니다. 필요하지 않지만 다른 모든 이유가 있습니까?