C++ Builder 參考手冊 ? System::Sysutils ? TryStrToFloat
字符串轉(zhuǎn)浮點數(shù)值
頭文件:#include <System.SysUtils.hpp>
命名空間:System::Sysutils
函數(shù)原型:
bool __fastcall TryStrToFloat(const System::UnicodeString S, System::Extended &Value);
bool __fastcall TryStrToFloat(const System::UnicodeString S, System::Extended &Value, const TFormatSettings &AFormatSettings);
bool __fastcall TryStrToFloat(const System::UnicodeString S, double &Value);
bool __fastcall TryStrToFloat(const System::UnicodeString S, double &Value, const TFormatSettings &AFormatSettings);
bool __fastcall TryStrToFloat(const System::UnicodeString S, float &Value);
bool __fastcall TryStrToFloat(const System::UnicodeString S, float &Value, const TFormatSettings &AFormatSettings);
參數(shù):
- S:字符串忧饭;
- Value:輸出浮點數(shù)轉(zhuǎn)換結(jié)果;
- AFormatSettings:地區(qū)格式;
返回值:
- true:轉(zhuǎn)換成功,通過參數(shù) Value 返回浮點類型數(shù)值轉(zhuǎn)換結(jié)果纽什;
- false:轉(zhuǎn)換失敾傩馈昭躺;
- 如果沒有 AFormatSettings 參數(shù),小數(shù)點使用全局變量 FormatSettings.DecimalSeparator幔翰,
不同國家或地區(qū)的小數(shù)點也不同漩氨,例如:中國和美國使用小圓點 '.',法國和越南使用逗號 ','遗增;
如果 FormatSettings 被修改叫惊,可以用 Sysutils::GetFormatSettings(); 恢復(fù)默認值為本地格式; - 如果有 AFormatSettings 參數(shù)做修,小數(shù)點使用 AFormatSettings.DecimalSeparator霍狰;
- 函數(shù) StrToFloat、StrToFloatDef 和 TryStrToFloat 的區(qū)別:
? StrToFloat 轉(zhuǎn)換失敗拋出 EConvertError 異常缓待;
? StrToFloatDef 轉(zhuǎn)換失敗返回默認值蚓耽;
? TryStrToFloat 轉(zhuǎn)換結(jié)果通過參數(shù)返回,函數(shù)返回值返回是否轉(zhuǎn)換成功旋炒; - 沒有 AFormatSettings 參數(shù)的 CurrToStrF 函數(shù)不是線程安全的步悠,因為使用了全局變量 FormatSettings 作為默認的地區(qū)格式;帶有 AFormatSettings 參數(shù)的函數(shù)是線程安全的瘫镇。
例子:
void __fastcall TForm1::Button1Click(TObject *Sender)
{
double val;
if(TryStrToFloat(L"1234.56789",val)) // 當(dāng)前地區(qū) (中國)
ShowFloat(val);
else
Memo1->Lines->Add(L"轉(zhuǎn)換失敗");
TFormatSettings fs;
// fs = TFormatSettings::Create(L"vi"); // 越南
fs = TFormatSettings::Create(L"fr"); // 法國
if(TryStrToFloat(L"1234.56789", val, fs)) // 法國和越南小數(shù)點必須用逗號 ','
ShowFloat(val);
else
Memo1->Lines->Add(L"轉(zhuǎn)換失敗");
if(TryStrToFloat(L"1234,56789", val, fs)) // 法國和越南小數(shù)點必須用逗號 ','
ShowFloat(val);
else
Memo1->Lines->Add(L"轉(zhuǎn)換失敗");
fs = TFormatSettings::Create(L"en_US"); // 美國
if(TryStrToFloat(L"1234.56789", val, fs)) // 美國的小數(shù)點用小圓點和中國的一樣 '.'
ShowFloat(val);
else
Memo1->Lines->Add(L"轉(zhuǎn)換失敗");
Sysutils::FormatSettings.DecimalSeparator = L','; // 把默認的小數(shù)點改成逗號 ','
if(TryStrToFloat(L"1234,56789", val)) // 默認的小數(shù)點需要用逗號 ','
ShowFloat(val);
else
Memo1->Lines->Add(L"轉(zhuǎn)換失敗");
Sysutils::GetFormatSettings(); // 格式恢復(fù)默認值 - 當(dāng)前地區(qū) (中國) 的格式
if(TryStrToFloat(L"1234.56789",val)) // 當(dāng)前地區(qū) (中國)
ShowFloat(val);
else
Memo1->Lines->Add(L"轉(zhuǎn)換失敗");
}
運行結(jié)果:
相關(guān):
- System::Sysutils::CurrToStr
- System::Sysutils::CurrToStrF
- System::Sysutils::FormatSettings
- System::Sysutils::GetFormatSettings
- System::Sysutils::TFormatSettings
- 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
- System::Currency
- System
- 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 ? TryStrToFloat