C++ Builder 参考手册 ➙ System::Sysutils ➙ FloatToDateTime
浮点数转为日期时间
头文件:#include <System.SysUtils.hpp>
命名空间:System::Sysutils
函数原型:
System::TDateTime __fastcall FloatToDateTime(const System::Extended Value);
参数:
- Value:浮点数
返回值:
- 把 Value 转成的日期时间类型值;
- 如果转换失败,抛出 EConvertError 异常;
日期时间对应的浮点数值是从1899年12月30日 00:00:00.000 开始的天数,即 1.0 相当于经过了一天即 24 小时,0.5 相当于 12 小时:
0 对应 1899年12月30日 00:00:00.000
0.5 对应 1899年12月30日 12:00:00.000
1.25 对应 1899年12月31日 06:00:00.000
• 最小值 -657434.0 对应 0100年01月01日 00:00:00.000
• 最大值 2958465.99999998836 对应 9999年12月31日 23:59:59.999
超过这个最小值最大值范围将抛出 EConvertError 异常。
相关:
- System::Sysutils::TryFloatToDateTime
- System::Sysutils::FloatToDateTime
- System::Sysutils::FormatDateTime
- System::Sysutils::DateTimeToStr
- System::Sysutils::DateTimeToString
- System::Sysutils::DateToStr
- System::Sysutils::FloatToStr
- System::Sysutils::FloatToStrF
- System::Sysutils::GUIDToString
- System::Sysutils::IntToStr
- System::Sysutils::IntToHex
- System::Sysutils::TimeToStr
- System::Sysutils::UIntToStr
- System::Sysutils
- System::Dateutils
- System
- 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 ➙ FormatDateTime