可以有任何具体原因可以选择UBound over Length吗?
这是代码,1维作为第二个参数传递.
For iIndex = 0 To UBound(myList) If Left(Request.ServerVariables("REMOTE_ADDR"),Len(myList(iIndex))) = saIPList(iIndex) Then bAuth = True Exit For End If Next
任何针对长度的性能提升
他们做不同的事情! UBound为您提供数组中的最后一个索引,而Length为您提供长度.那些不一样,因为通常UBound将是Length – 1.
原文链接:https://www.f2er.com/vb/255592.html