C++ Builder 参考手册 ➙ System::Sysutils ➙ StrToInt64
字符串转64位整数值
头文件:#include <System.SysUtils.hpp>
命名空间:System::Sysutils
函数原型:
__int64 __fastcall StrToInt64(const System::UnicodeString S);
参数:
- S:字符串;
返回值:
- 整数类型数值,如果转换失败,抛出 EConvertError 异常;
- 字符串可以是十进制或十六进制数据:开始可以有正负号 "+" 或 "-",也可以没有,然后是数字:
数字以 "0x" 开头认为是十六进制数据,否则认为是十进制,不支持八进制及其他进制; - 函数 StrToInt64、StrToInt64Def 和 TryStrToInt64 的区别:
• StrToInt64 转换失败抛出异常;
• StrToInt64Def 转换失败返回默认值;
• TryStrToInt64 转换结果通过参数返回,函数返回值返回是否转换成功。
例:
void __fastcall TForm1::Button1Click(TObject *Sender)
{
Memo1->Lines->Add(StrToInt64(L"9876543210"));
Memo1->Lines->Add(StrToInt64(L"09876543210"));
Memo1->Lines->Add(StrToInt64(L"0x9876543210"));
Memo1->Lines->Add(StrToInt64(L"-9876543210"));
Memo1->Lines->Add(StrToInt64(L"-09876543210"));
Memo1->Lines->Add(StrToInt64(L"-0x9876543210"));
}
运行结果:
运行结果相关:
- 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
- <cstdlib>
C++ Builder 参考手册 ➙ System::Sysutils ➙ StrToInt64
网友评论