手机
当前位置:查字典教程网 >编程开发 >ASP教程 >ASP中的ArrayList类
ASP中的ArrayList类
摘要:使用方法如下:程序代码ClassArrayListPrivatem_array()Privatem_countPrivateSubClass...

使用方法如下:

程序代码
<%
dim arr : set arr=new ArrayList
arr.add "a" : arr.add "b" : arr.add "c"
Response.Write arr.count & "<br>"
for i=0 to arr.count-1
Response.Write arr.item(i) & "<br>"
next
set arr=nothing
%>

Class ArrayList
Private m_array()
Private m_count
Private Sub Class_Initialize()
Redim m_array(0)
m_count=0
End Sub
Private Sub Class_Terminate()
Redim m_array(0)
m_count=0
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+1
End Function
End Class
%>

【ASP中的ArrayList类】相关文章:

newasp中main类

ASP常用函数:CheckBoxScript()

一个ASP中的数组

ASP常用的函数

用ASP做一个TOP COOL的站内搜索

代码与页面的分离

VBS、ASP代码语法加亮显示的类

在ASP中调用存储过程的几种方法

ASP部分代码介绍

ASP中常用的变量命名规则

精品推荐
分类导航