Functions.Days 方法 | |
将指定的秒数转换为天数。
命名空间:
XSharp.Core
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 FUNCTION Days(
nSeconds AS REAL8
) AS LONG
public static int Days(
double nSeconds
)
查看代码参数
- nSeconds
- 类型:Double
要转换为天数的秒数。
返回值
类型:
Int32
四舍五入到最接近的天数。
备注
Days() 函数将给定的秒数转换为整数天数。
不足24小时的剩余部分可以通过 TString() 函数获得(参见下面的示例)。
示例
这个例子使用 Days() 和 TString() 函数来显示 300,000 秒等于 3 天 11 小时 20 分钟:
1? Days(300000)
2? TString(300000)
参见