教程集 www.jiaochengji.com
教程集 >  脚本编程  >  Asp  >  正文 ASP中的ArrayList类[数组常用函数]

ASP中的ArrayList类[数组常用函数]

发布时间:2016-10-02   编辑:jiaochengji.com
教程集为您提供ASP中的ArrayList类[数组常用函数]等资源,欢迎您收藏本站,我们将为您提供最新的ASP中的ArrayList类[数组常用函数]资源

ASP中的ArrayList类[数组常用函数]

使用方法如下:

 程序代码
<%
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类[数组常用函数]
java list ArrayList用法详细
IList与ArrayList简单实现与区别
java删除ArrayList中重复的元素
net入门教程:ASP.NET ArrayList 对象
php 字符串转数组
ComboBox控件绑定数据方法
Java8中聚合操作collect、reduce方法详解
掌握ASP其实只需要6步
asp.net 数组操作入门实例

[关闭]
~ ~