vb6函数调用中的百分比和符号符号

时间:2013-07-02 20:54:11

标签: vb6

将带有%符号的整数DataValue%传入函数是什么意思?这与仅在没有“%”的情况下传递有何不同

传递PortNum%vs PortNum是什么意思?

Private Sub WritePortValue(ByVal DataValue As Integer)

   ' write the value to the output port
   '  Parameters:
   '    BoardNum    :the number used by CB.CFG to describe this board
   '    PortNum&    :the output port
   '    DataValue%  :the value written to the port

   ULStat& = cbDOut(BoardNum, PortNum&, DataValue%)

   If ULStat& <> 0 Then
      Stop
   Else
      lblShowValOut.Caption = Format$(DataValue%, "0")
   End If

End Sub

1 个答案:

答案 0 :(得分:5)

使用%时,它是指定数据类型的非常“Visual Basic”方式,%表示整数。 以下是其他一些类型:

% : Integer
& : Long
# : Double
! : Single
@ : Currency
$ : String

更多信息: http://support.microsoft.com/default.aspx?scid=kb;en-us;191713