java--container (generic type)

Source: Internet
Author: User

"Generics"

Cause: JDK1.4 before the type is ambiguous <1> the type of the mounted collection is treated as object, thus losing its actual type.  <2> often needs to be transformed when taken out of a collection, inefficient, and prone to error. Workaround: <1> Define the type of the object in the collection at the same time----instance program: list<string> C = new arraylist<string> (); The original cast is an object type, which is not required, and is directly qualified as String type C.add ("AA"); C.add ("BB"); C.add ("CC");      for (int i=0;i<c.size (); i++) {String c = c.get (i); System.out.println (c); Benefits: Enhanced readability and stability of the program

java--container (generic type)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.