zoukankan      html  css  js  c++  java
  • EncodeDateTime ... TryEncodeDateTime ... 构建时间

    SysUtils.EncodeDateTime
    SysUtils.EncodeDate
    SysUtils.EncodeTime
    
    DateUtils.EncodeDateDay
    DateUtils.EncodeDateMonthWeek
    DateUtils.EncodeDateTime
    DateUtils.EncodeDateWeek
    DateUtils.EncodeDayOfWeekInMonth
    
    DateUtils.TryEncodeDateTime
    DateUtils.TryEncodeDateDay
    DateUtils.TryEncodeDateWeek
    DateUtils.TryEncodeDateMonthWeek
    DateUtils.TryEncodeDayOfWeekInMonth
    

    unit Unit1;
    
    interface
    
    uses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs, StdCtrls;
    
    type
      TForm1 = class(TForm)
        Memo1: TMemo;
        procedure FormCreate(Sender: TObject);
      end;
    
    var
      Form1: TForm1;
    
    implementation
    
    {$R *.dfm}
    
    uses DateUtils;
    
    procedure TForm1.FormCreate(Sender: TObject);
    var
      t: TDateTime;
      s: string;
    begin
      t := EncodeDateTime(2009, 5, 20, 11, 22, 33, 999);
      s := FormatDateTime('yyyy-m-d h:n:s:zzz', t); //2009-5-20 11:22:33:999
    
      t := EncodeDate(2009, 5, 20);
      s := FormatDateTime('yyyy-m-d h:n:s:zzz', t); //2009-5-20 0:0:0:000
    
      t := EncodeTime(11, 22, 33, 999);
      s := FormatDateTime('h:n:s:zzz', t);          //11:22:33:999
    
      t := EncodeDateDay(2009, 140);
      s := FormatDateTime('yyyy-m-d', t);           //2009-5-20
    
      t := EncodeDateWeek(2009, 21);
      s := FormatDateTime('yyyy-m-d', t);           //2009-5-18
      t := EncodeDateWeek(2009, 21, 3);
      s := FormatDateTime('yyyy-m-d', t);           //2009-5-20
    
      t := EncodeDateMonthWeek(2009, 5, 3, 3);
      s := FormatDateTime('yyyy-m-d', t);           //2009-5-20
    
      t := EncodeDayOfWeekInMonth(2009, 5, 3, 3);
      s := FormatDateTime('yyyy-m-d', t);           //2009-5-20
    
      if TryEncodeDateTime(2009, 5, 20, 11, 22, 33, 999, t) then
        s := FormatDateTime('yyyy-m-d h:n:s:zzz', t);      //2009-5-20 11:22:33:999
    
      if TryEncodeDateDay(2009, 140, t) then
        s := FormatDateTime('yyyy-m-d', t);                //2009-5-20
    
      if TryEncodeDateWeek(2009, 21, t) then
        s := FormatDateTime('yyyy-m-d', t);                //2009-5-18
    
      if TryEncodeDateMonthWeek(2009, 5, 3, 3, t) then
        s := FormatDateTime('yyyy-m-d', t);                //2009-5-20
    
      if TryEncodeDayOfWeekInMonth(2009, 5, 3, 3, t) then
        s := FormatDateTime('yyyy-m-d', t);                //2009-5-20
    end;
    
    
    end.
    


    DateUtils-Function
  • 相关阅读:
    嵌入式开发-基础理论笔记
    如果有,说明你正在堕落!
    不愿意主动联系别人的6大理由
    WCF 服务的ABC之契约(七)
    WCF 服务的ABC之绑定(六)
    WCF 服务的ABC之地址(五)
    WCF 服务与终结点(四)
    WCF 配置文件(三)
    [转载][新手教程] 【小白教程】第一期:谁动了我的Grub?——Grub 修复
    [转载]反无人机企业DroneShield利用声音识别侦测无人机
  • 原文地址:https://www.cnblogs.com/del/p/1473157.html
Copyright © 2011-2022 走看看