为什么说泛型是类型安全的_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 为什么说泛型是类型安全的

为什么说泛型是类型安全的

 2015/4/4 10:01:05  Darren Ji  程序员俱乐部  我要评论(0)
  • 摘要:通常说泛型,比如List<T>是类型安全的,为什么这么说呢?先来看一个类型不安全的例子。classProgram{staticvoidMain(string[]args){vartempArr=newArrayList();tempArr.Add(1);tempArr.Add("2");foreach(varitemintempArr){inttempInt=(int)item;Console.WriteLine(tempInt);}Console.ReadKey();}
  • 标签:什么 为什么 泛型

通常说泛型,比如List<T>是类型安全的,为什么这么说呢?

 

先来看一个类型不安全的例子

 

monospace; width: 100%; margin: 0em; background-color: #f0f0f0">    class Program
    {
        static void Main(string[] args)
        {
            var tempArr = new ArrayList();
            tempArr.Add(1);
            tempArr.Add("2");
            foreach (var item in tempArr)
            {
                int tempInt = (int) item;
                Console.WriteLine(tempInt);
            }
            Console.ReadKey();
        }
    }

 

可以往ArrrayList实例中添加任何类型。但在遍历集合转换的时候,会抛出一个转换异常

 

1

 

如果使用List<T>泛型呢?

 

    class Program
    {
        static void Main(string[] args)
        {
            List<int> tempArr = new List<int>();
            tempArr.Add(1);
            tempArr.Add(2);
            foreach (var item in tempArr)
            {
                int tempInt = (int) item;
                Console.WriteLine(tempInt);
            }
            Console.ReadKey();
        }
    }

 

用List<int>后,关于类型安全,有2个体会:

 

1、如果使用tempArr.Add("3"),这在编译期就不通过
2、在进行类型转换的时候不会抛出异常

发表评论
用户名: 匿名