asp中REDIM的功能是動態(tài)定義數(shù)組長度
動態(tài)數(shù)組里面的一個語句,只能出現(xiàn)在過程里面,可以多次使用。可以改變數(shù)組大小,和維數(shù)。
格式:
REDIM [Preserve] 數(shù)組名(下標(biāo)1[下標(biāo)2....])
Preserve 保留動態(tài)數(shù)組的內(nèi)容(不用的話,每次執(zhí)行REDIM語句,當(dāng)前存儲的語句會全部丟失)
例如:
復(fù)制代碼 代碼如下:
Dim DynArray() '定義數(shù)組DynArray()為動態(tài)數(shù)組
REDIM Preserve DynArray(20)'為該數(shù)組分配元數(shù)個數(shù)
這樣對編程中一些動態(tài)的改變數(shù)組是非常重要的,而且經(jīng)常能用到,處理到,這REDIM深入了解第二電腦認(rèn)為對自己的編程的提高很有幫助。
下面舉一些ASP數(shù)組的例子,當(dāng)然不全是動態(tài)數(shù)組
在ASP編程中使用數(shù)組:
數(shù)組的定義:
復(fù)制代碼 代碼如下:
Dim MyArray
MyArray = Array(1‚5‚123‚12‚98)
可擴(kuò)展數(shù)組:
復(fù)制代碼 代碼如下:
Dim MyArray()
for i = 0 to 10
ReDim Preserve MyArray(i)
MyArray(i)=i
next
將一個字符串分割并返回分割結(jié)果的數(shù)組:
復(fù)制代碼 代碼如下:
Dim MyArray
MyArray = Split(tempcnt‚chr(13)chr(10))
For I = Lbound(MyArray) to Ubound(MyArray)
Response.Write MyArray(I) "br>"
Next
數(shù)組排序函數(shù):
復(fù)制代碼 代碼如下:
function..Sort(ary)
KeepChecking = TRUE
Do Until KeepChecking = FALSE
KeepChecking = FALSE
For I = 0 to UBound(ary)
If I = UBound(ary) Then Exit For
If ary(I) > ary(I+1) Then
FirstValue = ary(I)
SecondValue = ary(I+1)
ary(I) = SecondValue
ary(I+1) = FirstValue
KeepChecking = TRUE
End If
Next
Loop
Sort = ary
End function
數(shù)組排序函數(shù)應(yīng)用例子:
復(fù)制代碼 代碼如下:
Dim MyArray
MyArray = Array(1‚5‚123‚12‚98)
MyArray = Sort(MyArray)
For I = Lbound(MyArray) to Ubound(MyArray)
Response.Write MyArray(I) "br>"
Next
在Application和Session中使用數(shù)組:
復(fù)制代碼 代碼如下:
Application.Lock
Application("StoredArray") = MyArray
Application.Unlock
LocalArray = Application("StoredArray")
覆蓋Application中的數(shù)組:
復(fù)制代碼 代碼如下:
Application.Lock
Application("StoredArray") = LocalArray
Application.Unlock
Session使用方法與Application相同,從數(shù)據(jù)庫中把數(shù)據(jù)導(dǎo)入數(shù)組中:
復(fù)制代碼 代碼如下:
Dim MyArray
'取出全部記錄
MyArray = RS.GetRows
'取出前10項(xiàng)記錄
MyArray = RS.GetRows(10)
For row = 0 To UBound(MyArray‚ 2)
For col = 0 To UBound(MyArray‚ 1)
Response.Write (col‚ row) "br>"
Next
Next
通過以上的例子可以加深我們對數(shù)組的理解,在實(shí)際運(yùn)用中加以靈活運(yùn)用。
您可能感興趣的文章:- asp取得數(shù)組中的最大值的方法
- asp下使用數(shù)組存放數(shù)據(jù)的代碼
- asp 得到動態(tài)數(shù)組中元素的個數(shù)
- asp.net 數(shù)組中字符串替換的幾種方式
- asp 動態(tài)數(shù)組 提供Add、Insert、Remove、RemoveAt、Search等方法。
- asp.net 字符串、二進(jìn)制、編碼數(shù)組轉(zhuǎn)換函數(shù)
- asp.net通過js實(shí)現(xiàn)Cookie創(chuàng)建以及清除Cookie數(shù)組的代碼
- asp textarea 多行數(shù)組分割處理方法
- asp 數(shù)組 重復(fù)刪除函數(shù)(腳本之家增強(qiáng)版)
- ASP 過濾數(shù)組重復(fù)數(shù)據(jù)函數(shù)(加強(qiáng)版)
- ASP 使用Filter函數(shù)來檢索數(shù)組的實(shí)現(xiàn)代碼
- asp數(shù)組的使用介紹
- Asp與JS的數(shù)組和字符串下標(biāo)介紹
- ASP定義數(shù)組方法的技巧