- 相關(guān)推薦
asp是如何得到動(dòng)態(tài)數(shù)組中元素的個(gè)數(shù)
asp是如何得到動(dòng)態(tài)數(shù)組中元素的個(gè)數(shù)
一個(gè)動(dòng)態(tài)數(shù)組 a,如果你已經(jīng)使用redim 語句給它設(shè)定了大小,那么在此之后使用 ubound(a) 就可以得到它的上邊界。
如果你沒有使用 redim 語句給它設(shè)定大小,直接使用 ubound(a) 函數(shù),那么運(yùn)行時(shí)會(huì)報(bào)錯(cuò),并會(huì)中斷程序的執(zhí)行.我們恰恰利用這一點(diǎn),可以知道這個(gè)數(shù)組還沒有任何元素。于此同時(shí),我們卻不想程序中斷執(zhí)行,那么可以在 ubound(a) 函數(shù)執(zhí)行前加上一句
復(fù)制代碼 代碼如下:
on error resume next
把本功能寫成一個(gè)函數(shù) function get_element_count_of_one_aray(name_of_aray)
復(fù)制代碼 代碼如下:
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是如何得到動(dòng)態(tài)數(shù)組中元素的個(gè)數(shù)】相關(guān)文章:
ASP的特點(diǎn)與功能04-20
excel中如何計(jì)算工齡07-22
工齡在excel中如何計(jì)算07-22
詳細(xì)解答CSS中相同元素不同結(jié)構(gòu)重復(fù)定義的問題08-29
ppt中如何設(shè)置超鏈接10-17
朗誦中該如何把握重音09-08
如何恢復(fù)word中未保存文件06-15
關(guān)于wps文字中字體如何替換05-24
健身中如何提高肌肉的放松能力09-05