Functions.Time24 方法 | |
以24小时格式返回系统时间。
命名空间:
XSharp.Core
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 FUNCTION Time24() AS STRING
public static string Time24()
查看代码返回值
类型:
String
系统时间,格式为hh:mO:ss,其中hh为24小时制的小时,mm为分钟,ss为秒。
备注
Time24()不依赖于任何其他设置来决定其输出格式。相反,它直接返回系统时间。Time()与Seconds()相关,后者返回表示自午夜以来秒数的整数值。
示例
这些示例展示了使用Substr()提取Time24()结果中的小时、分钟和秒:
1? Time24()
2? Substr3(Time24(), 1, 2)
3? Substr3(Time24(), 4, 2)
4? Substr3(Time24(), 7, 2)
参见