Year 函数 (Visual Basic)

更新:2007 年 11 月

返回一个表示年的 Integer 值,范围为 1 到 9999。

Public Function Year(ByVal DateValue As DateTime) As Integer

参数

  • DateValue
    必选。所要提取年份的 Date 值。

备注

也可以通过调用 DatePart 和为 Interval 参数指定 DateInterval.Year 来获取年份。

示例

下面的示例使用 Year 函数从指定日期中获取年份。在开发环境中,使用代码的区域设置以短日期格式显示日期。

Dim thisDate As Date
Dim thisYear As Integer
thisDate = #2/12/1969#
thisYear = Year(thisDate)
' thisYear now contains 1969.

要求

命名空间:Microsoft.VisualBasic

**模块:**DateAndTime

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

请参见

参考

Day 函数 (Visual Basic)

Month 函数 (Visual Basic)

Now 属性

Weekday 函数 (Visual Basic)

DatePart 函数 (Visual Basic)

DateTime

ArgumentOutOfRangeException