-->

What is atoi equivalent for 64bit integer(uint64_t

2019-03-11 18:14发布

问题:

I'm trying to convert 64bit integer string to integer, but I don't know which one to use.

回答1:

Use strtoull if you have it or _strtoui64() with visual studio.

unsigned long long strtoull(const char *restrict str,
       char **restrict endptr, int base);


/* I am sure MS had a good reason not to name it "strtoull" or
 * "_strtoull" at least.
 */
unsigned __int64 _strtoui64(
   const char *nptr,
   char **endptr,
   int base 
);


回答2:

You've tagged this question c++, so I'm assuming you might be interested in C++ solutions too. You can do this using boost::lexical_cast or std::istringstream if boost isn't available to you:

#include <boost/lexical_cast.hpp>
#include <sstream>
#include <iostream>
#include <cstdint>
#include <string>

int main() {
  uint64_t test;
  test = boost::lexical_cast<uint64_t>("594348534879");

  // or
  std::istringstream ss("48543954385");
  if (!(ss >> test))
    std::cout << "failed" << std::endl;
}

Both styles work on Windows and Linux (and others).

In C++11 there's also functions that operate on std::string, including std::stoull which you can use:

#include <string>

int main() {
  const std::string str="594348534879";
  unsigned long long v = std::stoull(str);
}


回答3:

Something like...

#ifdef WINDOWS
  #define atoll(S) _atoi64(S)
#endif

..then just use atoll(). You may want to change the #ifdef WINDOWS to something else, just use something that you can rely on to indicate that atoll() is missing but atoi64() is there (at least for the scenarios you're concerned about).



回答4:

Try strtoull(), or strtoul(). The former is only in C99 and C++11, but it's usually widely available.



回答5:

In modern c++ I would use std::stoll.

http://en.cppreference.com/w/cpp/string/basic_string/stol

std::stoi, std::stol, std::stoll
  C++  Strings library std::basic_string 
Defined in header <string>
int       stoi( const std::string& str, std::size_t* pos = 0, int base = 10 );
int       stoi( const std::wstring& str, std::size_t* pos = 0, int base = 10 );
(1) (since C++11)
long      stol( const std::string& str, std::size_t* pos = 0, int base = 10 );
long      stol( const std::wstring& str, std::size_t* pos = 0, int base = 10 );
(2) (since C++11)
long long stoll( const std::string& str, std::size_t* pos = 0, int base = 10 );
long long stoll( const std::wstring& str, std::size_t* pos = 0, int base = 10 );
(3) (since C++11)
Interprets a signed integer value in the string str.
1) calls std::strtol(str.c_str(), &ptr, base) or std::wcstol(str.c_str(), &ptr, base)
2) calls std::strtol(str.c_str(), &ptr, base) or std::wcstol(str.c_str(), &ptr, base)
3) calls std::strtoll(str.c_str(), &ptr, base) or std::wcstoll(str.c_str(), &ptr, base)
Discards any whitespace characters (as identified by calling isspace()) until the first non-whitespace character is found, then takes as many characters as possible to form a valid base-n (where n=base) integer number representation and converts them to an integer value. The valid integer value consists of the following parts:
(optional) plus or minus sign
(optional) prefix (0) indicating octal base (applies only when the base is 8 or ​0​)
(optional) prefix (0x or 0X) indicating hexadecimal base (applies only when the base is 16 or ​0​)
a sequence of digits
The set of valid values for base is {0,2,3,...,36}. The set of valid digits for base-2 integers is {0,1}, for base-3 integers is {0,1,2}, and so on. For bases larger than 10, valid digits include alphabetic characters, starting from Aa for base-11 integer, to Zz for base-36 integer. The case of the characters is ignored.
Additional numeric formats may be accepted by the currently installed C locale.
If the value of base is ​0​, the numeric base is auto-detected: if the prefix is 0, the base is octal, if the prefix is 0x or 0X, the base is hexadecimal, otherwise the base is decimal.
If the minus sign was part of the input sequence, the numeric value calculated from the sequence of digits is negated as if by unary minus in the result type.
If pos is not a null pointer, then a pointer ptr - internal to the conversion functions - will receive the address of the first unconverted character in str.c_str(), and the index of that character will be calculated and stored in *pos, giving the number of characters that were processed by the conversion.
Parameters
str -   the string to convert
pos -   address of an integer to store the number of characters processed
base    -   the number base
Return value
The string converted to the specified signed integer type.
Exceptions
std::invalid_argument if no conversion could be performed
std::out_of_range if the converted value would fall out of the range of the result type or if the underlying function (std::strtol or std::strtoll) sets errno to ERANGE.


回答6:

When choosing between C-style functions like strtoll (which are of course easy to use with std::string as well) and std::stoll (which at first glance appears better suited for std::string) or boost::lexical_cast: Be aware that the two latter will throw exceptions in case they cannot parse the input string or the range overflows. Sometimes this is useful, sometimes not, depends what you're trying to achive.

If you are not in control of the string to parse (as it's external data) but you want to write robust code (which always should be your desire) you always need to expect corrupted data injected by some malicious attacker or broken outside components. For corrupted data strtoll will not throw but needs more explicit code to detect illegal input data. std::stoll and boost::lexical_cast do auto detect and signal crappy input but you must make sure to catch exceptions somewhere to avoid being terminated(TM).

So choose one or the other depending on the structure of the surrounding code, the needs of the parsed results (sometimes illegal data being "parsed" into a 0 is absolutely OK) the source of the data to parse and last but not least your personal preferences. Neither of the functions available is generally superiour to the others.



标签: c++ c atoi