What is difference b/w Generic List and Arraylist, Generic List Vs HashTable, Generic List Vs No Generic?

前端 未结 2 434
北海茫月
北海茫月 2020-12-12 06:52

What is difference between

  1. Generic List and Arraylist
  2. Generic List Vs HashTable
  3. Generic List Vs No Generic?
2条回答
  •  隐瞒了意图╮
    2020-12-12 07:31

    Basically, generic collections are type-safe at compile time: you specify which type of object the collection should contain, and the type system will make sure you only put that kind of object in it. Furthermore, you don't need to cast the item when you get it out.

    As an example, suppose we wanted a collection of strings. We could use ArrayList like this:

    ArrayList list = new ArrayList();
    list.Add("hello");
    list.Add(new Button()); // Oops! That's not meant to be there...
    ...
    string firstEntry = (string) list[0];
    

    But a List will prevent the invalid entry and avoid the cast:

    List list = new List();
    list.Add("hello");
    list.Add(new Button()); // This won't compile
    ...
    // No need for a cast; guaranteed to be type-safe... although it
    // will still throw an exception if the list is empty
    string firstEntry = list[0];
    

    Note that generic collections are just one example (albeit the most commonly used one) of the more general feature of generics, which allow you to parameterize a type or method by the type of data it deals with.

提交回复
热议问题