美文网首页
MilliSecondOfTheMonth - C++ Buil

MilliSecondOfTheMonth - C++ Buil

作者: 玄坴 | 来源:发表于2022-08-13 10:37 被阅读0次

    C++ Builder 参考手册System::DateutilsMilliSecondOfTheMonth


    这个日期时间在这一个月的第几毫秒

    头文件:#include <System.DateUtils.hpp>
    命名空间:System::Dateutils
    函数原型:

    unsigned __fastcall MilliSecondOfTheMonth(const System::TDateTime AValue);
    

    参数:

    • AValue:日期时间类型变量;

    返回值:

    • 返回值为 AValue 日期时间在这个月的第几毫秒;
    • 另外一个函数 MilliSecondOfTheYear 是一个日期时间在这一年的第几毫秒。

    例:用两种方法计算现在是本月的第几毫秒:1:用函数 MilliSecondOfTheMonth;2:利用两个日期相减为双精度浮点数的天数计算毫秒数:

    #include <System.DateUtils.hpp>
    void __fastcall TForm1::Button1Click(TObject *Sender)
    {
        TDateTime dt = Sysutils::Now();
        Memo1->Lines->Add(L"现在时间 " + FormatDateTime(L"yyyy/mm/dd hh:nn:ss.zzz", dt));
        Memo1->Lines->Add(String().sprintf(L"现在是本月的第 %u 毫秒", MilliSecondOfTheMonth(dt)));
    
        unsigned short iYear = YearOf(dt); // 年
        unsigned short iMonth = MonthOf(dt); // 月
        TDateTime d0 = EncodeDate(iYear, iMonth, 1); // iYear 年 iMonth 月 1 日
        double lfDays = dt - d0; // 现在时间距离本月 1 日的天数,小数,例如 0.5 为 12 小时
        long long llMilliSeconds = lfDays * 24 * 60 * 60 * 1000 + 0.5;
        Memo1->Lines->Add(String().sprintf(L"现在是本月的第 %lld 毫秒", llMilliSeconds));
    }
    

    运行结果:


    相关:


    C++ Builder 参考手册System::DateutilsMilliSecondOfTheMonth

    相关文章

      网友评论

          本文标题:MilliSecondOfTheMonth - C++ Buil

          本文链接:https://www.haomeiwen.com/subject/ilyovrtx.html