Byte变量的有效范围是0
和255
。
Dim b As Byte
b = 30
' The following statement causes an error because the value is too large.
'b = 256
如何找到一个数字的范围30 = 256
Byte变量的有效范围是0
和255
。
Dim b As Byte
b = 30
' The following statement causes an error because the value is too large.
'b = 256
如何找到一个数字的范围30 = 256
我可能误解了您的问题,但是您是否查看过数据类型的文档? http://msdn.microsoft.com/en-us/library/vstudio/47zceaw7%28v=vs.120%29.aspx
该文档明确说明了所有数据类型的有效范围。