TryStrToBool - C++ Builder
2022-05-22 本文已影响0人
玄坴
C++ Builder 参考手册 ➙ System::Sysutils ➙ TryStrToBool
字符串转布尔型数值
头文件:#include <System.SysUtils.hpp>
命名空间:System::Sysutils
函数原型:
bool __fastcall TryStrToBool(const System::UnicodeString S, bool &Value);
参数:
- S:字符串;
- Value:返回转换的布尔值结果;
返回值:
- true:通过参数 Value 返回转换的布尔型数值:
• 字符串 S 如果是数字 (整数或小数),能够成功的转成浮点数,数值等于 0 返回 false,不等于 0 返回 true;
• 字符串 S 如果在 Sysutils::FalseBoolStrs 全局字符串数组里面能够找到 (不区分大小写),返回 false;
• 字符串 S 如果在 Sysutils::TrueBoolStrs 全局字符串数组里面能够找到 (不区分大小写),返回 true; - false:前面条件都不满足,转换失败;
- 函数 StrToBool、StrToBoolDef 和 TryStrToBool 的区别:
• StrToBool 转换失败抛出 EConvertError 异常
• StrToBoolDef 转换失败返回默认值;
• TryStrToBool 转换结果通过参数返回,函数返回是否成功,成功返回 true,失败返回 false; - 布尔型默认显示为 1 和 0,可以用函数 BoolToStr 转成 "True"、"False" 或 "是"、"否" 等字符串;
- 可以通过修改全局字符串数组 Sysutils::FalseBoolStrs 和 Sysutils::TrueBoolStrs 改变识别的字符串,请参考 StrToBool 和 BoolToStr。
相关:
- System::Sysutils::BoolToStr
- 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::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 ➙ TryStrToBool