程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C# 2.0 中關於泛型的用法實例

C# 2.0 中關於泛型的用法實例

編輯:關於C語言

1. 定義泛型類

using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;

namespace WindowsApplication1
{
    class BList<T>
    {
        ArrayList arr = new ArrayList();

        public T this[int i]
        {
            get
            {
                return (T)arr[i];
            }
            set
            {
               arr.Add(value);
            }
        }

        public void Add(T p_obj)
        {
            arr.Add(p_obj);
        }

        public int Count
        {
            get
            {
                return arr.Count;
            }
        }

    }
}


2. 調用(放到任意的窗體事件中)
 private void button2_Click(object sender, EventArgs e)
        {

            BList<int> _list = new BList<int>(); // <int>裡面可以替換任意已知類型
            for (int i = 0; i < 10; i++)
            {
                _list.Add( i);
            }

            for (int i = 0; i < _list.Count; i++)

                MessageBox.Show(_list[i].ToString());
        }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved