熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

ASP中的ArrayList類

2022-06-13   來源: .NET編程 

  使用方法如下

  程序代碼
<%
dim arr : set arr=new ArrayList
arradd "a" : arradd "b" : arradd "c"
ResponseWrite arrcount & "<br>"
for i= to arrcount
    ResponseWrite arritem(i) & "<br>"
next
set arr=nothing
%>

  Class ArrayList
Private m_array()
Private m_count
Private Sub Class_Initialize()
    Redim m_array()
    m_count=
End Sub
Private Sub Class_Terminate()
    Redim m_array()
    m_count=
End Sub
Public Property Get Count()
    Count=m_count
End Property
Public Property Get Item(index)
    Item=m_array(index)
End Property
Public Function Add(arrItem)
    Redim Preserve m_array(m_count)
    m_array(m_count)=arrItem
    m_count=m_count+
End Function
End Class
%>


From:http://tw.wingwit.com/Article/program/net/201311/14323.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.