主页C++ Builder 资料C++ Builder 参考手册System 日期和时间Now
C++ Builder 串口控件
C++ Builder 编程技巧
C++ Builder 操作指南
C++ Builder 参考手册
基础知识
cfloat 浮点数
cmath 数学函数
cstdlib 标准库函数
System 字符串
System 日期和时间
 • TDate
 • TTime
 • TDateTime
 • TDateTimeBase
 • Now
 • UnixToDateTime
 • DateTimeToUnix
 • DateTimeToStr
 • DateToStr
 • DecodeDate
 • DecodeTime
 • DecodeDateTime
 • FormatDateTime
 • StrToDate
 • StrToDateDef
 • StrToDateTime
 • StrToDateTimeDef
 • StrToTime
 • StrToTimeDef
 • TimeToStr
System.Math.hpp 数学函数
其他数据类型
VCL 基础类
VCL 应用程序
Pictures 图片
Graphics 绘图
Additional 控件
System 控件
A ~ Z 字母顺序排列的目录
网友留言/技术支持
Now - 获取当前系统时间 (本地时间)

函数原型:

TDateTime __fastcall Now(void);

头文件:

#include <System.SysUtils.hpp> (XE2 之后) #include <SysUtils.hpp> (XE 之前)

参数:

返回值:

TDateTime 类型的当前系统时间,是本地时间。

 

例1:把当前系统时间显示在 Label1 上

Label1->Caption = Now();

直接把 TDateTime 类型的日期时间显示出来,使用的是 FormatSettings 全局对象指定的格式。

 

例2:用指定格式把当前系统时间显示在 Label1 上

Label1->Caption = FormatDateTime(L"yyyy-mm-dd hh:nn:ss.zzz", Now());
◤上一页:TDateTimeBase下一页:UnixToDateTime

C++ 爱好者 -- Victor Chen 的个人网站 www.cppfans.com 辽ICP备11016859号