展开全部
Hi,
在 VB 语言中,"#" 有以下三种常见含义:
1. 当用于表示数据类型双精度浮点(Double)时,其定义语句如下:
1 | Dim dblSalary As Double |
它等效于:
1 | Dim dblSalary# |
2. 当用于日期数据类型(Date)时,必须将该类型包括在两个 "#" 之间。例如:
1 2 | Dim dtBirthday As Date dtBirthday = #1999/9/9# |
3. 当用于 Like 运算符时,表示为匹配任何一个数字 (0–9)。例如:
1 2 3 4 5 6 7 | Dim strComment As String strComment = "H2O" If strComment Like "H#O" Then MsgBox "Matched!" End If |
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询