asp.net2.0中的collections 和lists-ArrayList

本文通过一个具体实例展示了如何使用ArrayList来简化对对象集合的操作,包括添加、排序、查找等,并对比了与传统Array操作的区别。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

前面讲过了Array,现在讲一下ArrayList

前面再array里面我们要写很多东西才能让Array搞定。现在呢ArrayList天生就支持Add,Insert,Remove,Sort,BinarySearch 牛啊。

以前讲Array的代码就(http://blog.youkuaiyun.com/xiong1000/archive/2006/07/13/914762.aspx)变得简单了

现在用ArrayList代码就变为

using System;

using System.Collections;

public partial class_Default:System.Web.UI.Page

{

        proteced void Page_Loade(object sender,EventArgs e)

            {
           person jimmy = new person("jimmy", "zeng");
           person stone = new person("stone", "wang");
           person helen = new person("Helen", "liu");
          
           ArrayList people = new ArrayList();
           people.Add(jimmy);
           people.Add(stone);
           people.Add(helen);

          
           Response.Write("using the foreach.unsorting<br/>");
           foreach( person p in people)
           {
            Response.Write(p.FullName +"<br/>"); 
           }
          
           people.Sort();
           Response.Write("using the foreach.sorted<br/>");
           foreach( person p in people)
           {
            Response.Write(p.FullName +"<br/>"); 
           }
          
           person jimmy2 = new person("jimmy","zeng");
           int indexofjimmy2 = people.IndexOf(jimmy2);
           Response.Write("Jimmy2 is at "+indexofjimmy2+"<br/>");
          
           int indexofsamejimmy = people.BinarySearch(jimmy2);
           Response.Write("The Equivalent jimmy is at"+indexofsamejimmy+"<br/>");
          
          
          
            }

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值