• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

vb.net中应用 ArrayList 实例

发布: 2008-4-10 11:22 | 作者: 不详 | 来源: csdn | 查看: 106次 | 进入软件测试论坛讨论

领测软件测试网 ArrayList 就是数组列表,它位于 System.Collections名称空间下。是集和类型。 与 ArrayList 同胞的还有一个List,他们的实用很相似。我们只介绍一些关于ArrayList的一些东东。

  ArrayList有三个构造器:

  ArrayList()
  ArrayList(int32)
  ArrayList(ICollection)

  一个简单的例子如下:

  Dim t As New ArrayList()
  t.Add("Northsnow")
  Dim d As New Collection
  d.Add("塞北的雪")
  d.Add("http://blog.csdn.net/precipitant")
  t.AddRange(d)
  For Each aa As String In t
  MsgBox(aa.ToString())
  Next

  '会依次输出:
  'Northsnow
  '塞北的雪
  'http://blog.csdn.net/precipitant
  ArrayList的构造器可以接受一个集和,例子如下:
  Dim d As New Collection
  d.add("Northsnow")
  d.Add("塞北的雪")
  d.Add("http://blog.csdn.net/precipitant")
  Dim t As New ArrayList(d)
  Dim sb As New System.Text.StringBuilder()
  If t.Count > 0 Then
  sb.Append("ArrayList中共有 成员 ")
  sb.Append(t.Count.ToString)
  sb.Append(" 个")
  For Each aa As String In t
  sb.AppendLine()
  sb.Append(aa)
  Next
  End If
  MsgBox(sb.ToString)

  '最后输出结果为:
  'ArrayList中共有 成员 3 个
  'Northsnow
  '塞北的雪
  'http://blog.csdn.net/precipitant
  另外还可以给 ArrayList的构造器传递一个整数,以设定ArrayList的初始容量。并可以通过 更改 Capacity属性的值更改 当前 ArrayList的容量,也可以用   TrimToSize方法将容量压缩成实际的元素数量,例子如下:

  Dim t As New ArrayList(10)
  Dim d As New Collection
  d.Add("Northsnow")
  d.Add("塞北的雪")
  d.Add("http://blog.csdn.net/precipitant")
  t.AddRange(d)
  MsgBox(t.Capacity)
  t.Capacity = 6
  MsgBox(t.Capacity)
  t.TrimToSize()
  't.Capacity = t.Count 与 t.TrimToSize() 等效
  MsgBox(t.Capacity)
  '依次输出:
  '10
  '6
  '3
  由于ArrayList是集和类型,所以它具有一些集和的操作方法。比如 遍历,查找,插入 等操作。同时 ArrayList还相当于一个大小可自由改变的一维数组。所以当然也可以像对待数组一样对他进行操作。

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/

TAG: 实例 ArrayList


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网