gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 21:54:46 26 4
gpt4 key购买 nike

将带有 % 符号的整数 DataValue% 传递给函数是什么意思?这与不带“%”的传递有何不同

此外,传递 PortNum% 与 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

最佳答案

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

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

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

关于vb6 - vb6 函数调用中的百分比和符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17435699/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com