首页 > 代码库 > 为什么要使用泛型?泛型和非泛型对比
为什么要使用泛型?泛型和非泛型对比
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); } } }
运行效果图:
为什么要使用泛型?泛型和非泛型对比
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。