码迷,mamicode.com
首页 > 其他好文 > 详细

为什么要使用泛型?泛型和非泛型对比

时间:2016-10-21 01:17:21      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

 

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 泛型和非泛型对比
{
    class Program
    {
        static void Main(string[] args)
        {
            testGeneric();
            testNonGeneric();
            Console.ReadKey();
        }
        //测试泛型类型操作的运行时间
        public static void testGeneric()
        {
            Stopwatch stopwatch = new Stopwatch();
            List<int> list = new List<int>();
            stopwatch.Start();
            for (int i = 0; i < 10000000; i++)
            {
                list.Add(i);
            }
            stopwatch.Stop();
            TimeSpan ts = stopwatch.Elapsed;
            string elapsedTime = string.Format("{0:00}:{1:00}:{2:00}:{3:00}", ts.Hours, ts.Minutes, ts.Seconds, ts.TotalMilliseconds / 10);
            Console.WriteLine("泛型类型运行的时间:" + elapsedTime);
        }
        public static void testNonGeneric()
        {
            Stopwatch stopwatch = new Stopwatch();
            ArrayList arraylist = new ArrayList();
            stopwatch.Start();
            for (int i = 0; i < 10000000; i++)
            {
                arraylist.Add(i);
            }
            stopwatch.Stop();
            TimeSpan ts = stopwatch.Elapsed;
            string elapsetime = string.Format("{0:00}:{1:00}:{2:00}:{3:00}", ts.Hours, ts.Minutes, ts.Seconds, ts.Milliseconds / 10);
            Console.WriteLine("非泛型运行的时间:" + elapsetime);

        }
    }
}

运行效果图:

技术分享

 

为什么要使用泛型?泛型和非泛型对比

标签:

原文地址:http://www.cnblogs.com/xiefengdaxia123/p/5983027.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!