Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::stoul,std::stoull

      From cppreference.com
      <cpp‎ |string‎ |basic string
       
       
       
      std::basic_string
       
      Defined in header<string>
      unsignedlong      stoul(conststd::string& str,
                                 std::size_t* pos= nullptr,int base=10);
      (1)(since C++11)
      unsignedlong      stoul(conststd::wstring& str,
                                 std::size_t* pos= nullptr,int base=10);
      (2)(since C++11)
      unsignedlonglong stoull(conststd::string& str,
                                 std::size_t* pos= nullptr,int base=10);
      (3)(since C++11)
      unsignedlonglong stoull(conststd::wstring& str,
                                 std::size_t* pos= nullptr,int base=10);
      (4)(since C++11)

      Interprets an unsigned integer value in the stringstr.

      Letptr be an internal (to the conversion functions) pointer of typechar*(1,3) orwchar_t*(2,4), accordingly.

      1) Callsstd::strtoul(str.c_str(),&ptr, base).
      2) Callsstd::wcstoul(str.c_str(),&ptr, base).
      3) Callsstd::strtoull(str.c_str(),&ptr, base).
      4) Callsstd::wcstoull(str.c_str(),&ptr, base).

      Discards any whitespace characters (as identified by callingstd::isspace) until the first non-whitespace character is found, then takes as many characters as possible to form a validbase-n (where n=base) unsigned integer number representation and converts them to an integer value. The valid unsigned integer value consists of the following parts:

      • (optional) plus or minus sign
      • (optional) prefix (0) indicating octal base (applies only when the base is8 or0)
      • (optional) prefix (0x or0X) indicating hexadecimal base (applies only when the base is16 or0)
      • 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 than10, valid digits include alphabetic characters, starting fromAa for base-11 integer, toZz for base-36 integer. The case of the characters is ignored.

      Additional numeric formats may be accepted by the currently installed Clocale.

      If the value ofbase is0, the numeric base is auto-detected: if the prefix is0, the base is octal, if the prefix is0x or0X, 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 byunary minus in the result type, which applies unsigned integer wraparound rules.

      Ifpos is not a null pointer, thenptr will receive the address of the first unconverted character instr.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.

      Contents

      [edit]Parameters

      str - the string to convert
      pos - address of an integer to store the number of characters processed
      base - the number base

      [edit]Return value

      The string converted to the specified unsigned integer type.

      [edit]Exceptions

      [edit]Example

      This section is incomplete
      Reason: no example

      [edit]Defect reports

      The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

      DRApplied toBehavior as publishedCorrect behavior
      LWG 2009C++11std::out_of_range would not be thrown if
      std::strtoul orstd::strtoull setserrno toERANGE
      will throw

      [edit]See also

      (C++11)(C++11)(C++11)
      converts a string to a signed integer
      (function)[edit]
      (C++11)(C++11)(C++11)
      converts a string to a floating point value
      (function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/string/basic_string/stoul&oldid=156406"

      [8]ページ先頭

      ©2009-2025 Movatter.jp