C++ Builder 參考手冊 ? System::Sysutils ? FloatToStr
浮點型數(shù)值轉(zhuǎn)字符串
頭文件:#include <System.SysUtils.hpp>
命名空間:System::Sysutils
函數(shù)原型:
System::UnicodeString __fastcall FloatToStr(System::Extended Value);
System::UnicodeString __fastcall FloatToStr(System::Extended Value, const TFormatSettings &AFormatSettings);
參數(shù):
- Value:浮點型變量鲜漩;
- AFormatSettings:地區(qū)格式著隆;
返回值:
- 參數(shù) Value 轉(zhuǎn)為字符串攻晒;
- 地區(qū)格式:這個函數(shù)使用了地區(qū)格式的 DecimalSeparator 作為小數(shù)點踱阿,不同的地區(qū)可能會使用不同的字符當(dāng)做小數(shù)點辆它,中國和大多數(shù)國家一樣使用小圓點作為小數(shù)點刨啸,但是有的國家 - 例如法國:使用逗號當(dāng)做小數(shù)點,如果程序在法國的電腦上運行侣灶,默認(rèn)情況所有的小數(shù)點都會使用逗號的甸祭,包括浮點數(shù)和貨幣型,程序國際化時要特別注意褥影;
- 如果沒有 AFormatSettings 參數(shù)池户,使用當(dāng)前地區(qū)格式;
- 如果有 AFormatSettings 參數(shù)凡怎,使用這個參數(shù)的格式校焦,并且使用這個參數(shù)可以隨意設(shè)定一個字符當(dāng)做小數(shù)點;
- 可以使用全局變量 System::Sysutils::FormatSettings 修改默認(rèn)的格式统倒;
- 只有一個 Value 參數(shù)的函數(shù)不是線程安全的寨典,因為使用了全局變量作為默認(rèn)的地區(qū)格式;帶有 AFormatSettings 參數(shù)的函數(shù)是線程安全的房匆。
例:分別用當(dāng)前地區(qū)格式耸成、法國格式和自定義格式輸出浮點數(shù) 123.456789
void __fastcall TForm1::Button1Click(TObject *Sender)
{
double Val = 123.456789;
Memo1->Lines->Add(Sysutils::FloatToStr(Val));
Memo1->Lines->Add(Sysutils::FloatToStr(Val, TFormatSettings::Create(L"fr_FR")));
TFormatSettings fs = TFormatSettings::Create();
fs.DecimalSeparator = L'*';
Memo1->Lines->Add(Sysutils::FloatToStr(Val, fs));
}
運行結(jié)果:
相關(guān):
- System::Sysutils::FormatFloat
- System::Sysutils::FloatToStr
- System::Sysutils::FloatToStrF
- System::Sysutils::CurrToStr
- System::Sysutils::CurrToStrF
- System::Sysutils::FormatSettings
- System::Sysutils::TFormatSettings
- System::Sysutils::StrToBool
- System::Sysutils::StrToBoolDef
- System::Sysutils::TryStrToBool
- System::Sysutils::BoolToStr
- System::Sysutils::DateTimeToStr
- System::Sysutils::DateTimeToString
- System::Sysutils::DateToStr
- System::Sysutils::GUIDToString
- System::Sysutils::IntToStr
- System::Sysutils::IntToHex
- System::Sysutils::TimeToStr
- System::Sysutils::UIntToStr
- System::Sysutils
- std::itoa, std::_itoa, std::_itot, std::_itow
- std::ltoa, std::_ltoa, std::_ltot, std::_ltow
- std::ultoa, std::_ultoa, std::_ultot, std::_ultow
- std::_i64toa, std::_i64tot, std::_i64tow
- std::_ui64toa, std::_ui64tot, std::_ui64tow
- std::ecvt, std::_ecvt
- std::fcvt, std::_fcvt
- std::gcvt, std::_gcvt
- <cstdlib>
C++ Builder 參考手冊 ? System::Sysutils ? FloatToStr