TryStrToInt64 - C++ Builder

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


字符串转64位整数值

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

bool __fastcall TryStrToInt64(const System::UnicodeString S, __int64 &Value);

参数:

  • S:字符串;
  • Value:返回64位整数值转换结果;

返回值:

  • true:通过参数 Value 返回64位整数类型数值;
  • false:转换失败;
  • 字符串可以是十进制或十六进制数据:开始可以有正负号 "+" 或 "-",也可以没有,然后是数字:
    数字以 "0x" 开头认为是十六进制数据,否则认为是十进制,不支持八进制及其他进制;
  • 函数 StrToInt64、StrToInt64Def 和 TryStrToInt64 的区别:
    • StrToInt64 转换失败抛出 EConvertError 异常;
    • StrToInt64Def 转换失败返回默认值;
    • TryStrToInt64 转换结果通过参数返回,函数返回值返回是否转换成功。

相关:

  • 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 ➙ TryStrToInt64

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