unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    procedure FormCreate(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

uses DateUtils;

procedure TForm1.FormCreate(Sender: TObject);
var
  t1,t2,t3,t4: TDateTime;
  b: Boolean;
begin
  t1 := StrToDateTime('2009-1-21');
  t2 := StrToDateTime('2009-1-21');
  t3 := StrToDateTime('2009-5-21');
  t4 := Now;

  {判断是不是同一天}
  b := IsSameDay(t1, t2); //True
  b := IsSameDay(t1, t3); //False

  {判断给定时间和当前时间是不是同一天}
  b := IsToday(t1); //False
  b := IsToDay(t4); //True

//  ShowMessage(BoolToStr(b, True));
end;

end.

相关文章:

  • 2022-12-23
  • 2022-01-20
  • 2021-12-16
  • 2022-02-08
  • 2021-08-01
  • 2021-06-25
  • 2021-07-28
  • 2022-12-23
猜你喜欢
  • 2022-02-08
  • 2022-03-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案