Second 函数 (Visual Basic)

更新:2007 年 11 月

返回一个 0 到 59 之间的 Integer 值,它表示一分钟内的某秒。

Public Function Second(ByVal TimeValue As DateTime) As Integer

参数

  • TimeValue
    必选。要从中提取秒的 Date 值。

备注

也可以通过调用 DatePart 和为 Interval 参数指定 DateInterval.Second 来获取某分钟的秒。

示例

下面的示例使用 Second 函数获取指定时间中某分钟的秒部分。在开发环境中,使用代码的区域设置以短时间格式显示时间。

Dim thisTime As Date
Dim thisSecond As Integer
thisTime = #4:35:17 PM#
thisSecond = Second(thisTime)
' thisSecond now contains 17.

要求

命名空间:Microsoft.VisualBasic

**模块:**DateAndTime

**程序集:**Visual Basic 运行库(在 Microsoft.VisualBasic.dll 中)

请参见

参考

Day 函数 (Visual Basic)

Hour 函数 (Visual Basic)

Minute 函数

Now 属性

TimeOfDay 属性

DatePart 函数 (Visual Basic)

System

DateTime

ArgumentException

ArgumentOutOfRangeException