- 相關(guān)推薦
asp是如何得到動態(tài)數(shù)組中元素的個數(shù)
asp是如何得到動態(tài)數(shù)組中元素的個數(shù)
一個動態(tài)數(shù)組 a,如果你已經(jīng)使用redim 語句給它設(shè)定了大小,那么在此之后使用 ubound(a) 就可以得到它的上邊界。
如果你沒有使用 redim 語句給它設(shè)定大小,直接使用 ubound(a) 函數(shù),那么運行時會報錯,并會中斷程序的執(zhí)行.我們恰恰利用這一點,可以知道這個數(shù)組還沒有任何元素。于此同時,我們卻不想程序中斷執(zhí)行,那么可以在 ubound(a) 函數(shù)執(zhí)行前加上一句
復制代碼 代碼如下:
on error resume next
把本功能寫成一個函數(shù) function get_element_count_of_one_aray(name_of_aray)
復制代碼 代碼如下:
on error resume next
uper_bound_of_aray=ubound(name_of_aray)
if err then
get_element_count_of_one_aray=0
else
get_element_count_of_one_aray=uper_bound_of_aray+1
end if
end function
【asp是如何得到動態(tài)數(shù)組中元素的個數(shù)】相關(guān)文章:
員工在激勵中應如何得到薪酬?09-04
Excel中如何計算某個數(shù)值在列表中的排位情況11-17
如何獲取PHP數(shù)組的鍵與值呢10-25
解讀Rnd 函數(shù)中的asp08-03
Java中的動態(tài)代碼編程06-27
excel表格如何統(tǒng)計每行的批注個數(shù)08-06
廣告設(shè)計中的水墨元素08-19
中國元素在動畫設(shè)計中的應用09-16