他的声明为:
function FormatDateTime(const Format: string; DateTime: TDateTime): string; overload;
Format参数是一个格式化字符串。DateTime是时间类型。返回值是一种格式化后的字符串
重点来看Format参数中的指令字符
- c 以短时间格式显示时间,即全部是数字的表示
FormatdateTime(‘c’,now);
输出为:2004-8-7 9:55:40</
他的声明为:
function FormatDateTime(const Format: string; DateTime: TDateTime): string; overload;
Format参数是一个格式化字符串。DateTime是时间类型。返回值是一种格式化后的字符串
重点来看Format参数中的指令字符