TryStrToUInt - C++ Builder

C++ Builder 参考手册 ➙ System::Sysutils ➙ TryStrToUInt


字符串转无符号整数值

头文件:#include
命名空间:System::Sysutils
函数原型:

bool __fastcall TryStrToUInt(const System::UnicodeString S, unsigned &Value);

参数:

  • S:字符串;
  • Value:返回无符号整数转换结果;

返回值:

  • true:通过参数 Value 返回无符号整数类型数值;
  • false:转换失败;
  • 字符串可以是十进制或十六进制数据:以 "0x" 开头认为是十六进制数据,否则认为是十进制,不支持八进制及其他进制;
  • 函数 StrToUInt、StrToUIntDef 和 TryStrToUInt 的区别:
    • StrToUInt 转换失败抛出 EConvertError 异常;
    • StrToUIntDef 转换失败返回默认值;
    • TryStrToUInt 转换结果通过参数返回,函数返回值返回是否转换成功。

相关:

  • System::Sysutils::IntToStr
  • System::Sysutils::IntToHex
  • System::Sysutils::UIntToStr
  • System::Sysutils::Format
  • System::Sysutils::FormatBuf
  • System::Sysutils::StrToBool
  • System::Sysutils::StrToBoolDef
  • System::Sysutils::StrToCurr
  • System::Sysutils::StrToCurrDef
  • System::Sysutils::StrToDate
  • System::Sysutils::StrToDateDef
  • System::Sysutils::StrToDateTime
  • System::Sysutils::StrToDateTimeDef
  • System::Sysutils::StrToFloat
  • System::Sysutils::StrToFloatDef
  • System::Sysutils::StrToInt
  • System::Sysutils::StrToIntDef
  • System::Sysutils::StrToInt64
  • System::Sysutils::StrToInt64Def
  • System::Sysutils::StrToTime
  • System::Sysutils::StrToTimeDef
  • System::Sysutils::StrToUInt
  • System::Sysutils::StrToUIntDef
  • System::Sysutils::StrToUInt64
  • System::Sysutils::StrToUInt64Def
  • System::Sysutils::TimeToStr
  • System::Sysutils::TryStrToBool
  • System::Sysutils::TryStrToCurr
  • System::Sysutils::TryStrToDate
  • System::Sysutils::TryStrToDateTime
  • System::Sysutils::TryStrToFloat
  • System::Sysutils::TryStrToInt
  • System::Sysutils::TryStrToInt64
  • System::Sysutils::TryStrToTime
  • System::Sysutils::TryStrToUInt
  • System::Sysutils::TryStrToUInt64
  • System::Sysutils
  • std::atof, std::_ttof, std::_wtof
  • std::_atold, std::_ttold, std::_wtold
  • std::atoi, std::_ttoi, std::_wtoi
  • std::atol, std::_ttol, std::_wtol
  • std::atoll, std::_ttoll, std::_wtoll
  • std::_atoi64, std::_ttoi64, std::_wtoi64
  • std::strtof, std::_tcstof, std::wcstof
  • std::strtod, std::_tcstod, std::wcstod
  • std::strtold, std::wcstold, std::_strtold, std::_tcstold, std::_wcstold
  • std::strtol, std::_tcstol, std::wcstol
  • std::strtoll, std::_tcstoll, std::wcstoll
  • std::strtoul, std::_tcstoul, std::wcstoul
  • std::strtoull, std::_tcstoull, std::wcstoull

C++ Builder 参考手册 ➙ System::Sysutils ➙ TryStrToUInt

你可能感兴趣的:(TryStrToUInt - C++ Builder)