Home > Java > javaTutorial > body text

Summary of usage of generics in Java

高洛峰
Release: 2017-01-18 11:19:58
Original
1372 people have browsed it

The examples in this article summarize the usage of generics in Java. Share it with everyone for your reference. The details are as follows:

1 Basic use

public interface List<E> {
 void add(E);
 Iterator<E> iterator();
}
Copy after login

2 Generics and subclasses

Child is a subclass of Parent, but List is not A subclass of List.
So: List list = new ArrayList() is wrong.
If the above is correct, then:

List<String> ls = new ArrayList<String>(); //1
List<Object> lo = ls; //2
lo.add(new Object()); // 3
String s = ls.get(0); // 4,将object转换为string将失败。
Copy after login

3 wildcards

Because of reason 2, the following implementation cannot be used to unify the output of the collection.

void printCollection(Collection<Object> c) {
 for (Object o: c) {
 // do something
 }
}
Copy after login

Therefore, the wildcard ? is needed:

void printCollection(Collection<?> c) {
 for (Object o: c) { // 1
 // do something
 }
} // ok
Copy after login

The ? here indicates that the type is unknown, but any object is Object, so 1 in the above example is correct. But the following example is wrong:

void add(Collection<? extends MyClass> c) {
 c.add(new MyClass()); // wrong
} // ok
Copy after login

The reason is also very clear, ? extends MyClass indicates that the type is a subclass of MyClass, but the specific type is not known

4. Generic method

The above example can be implemented as:

<T> add(Collection<T> c, T t) {
 c.add(t);
}
Copy after login

The compiler will help with type conversion while ensuring semantics.

5. Comparison of generic runtime

List<String> l1 = new ArrayList<String>();
List<Integer> l2 = new ArrayList<Integer>();
System.out.println(l1.getClass() == l2.getClass()); // true
Copy after login

Because the runtime of generic classes is the same.

6 Generic array (may lead to type insecurity)

List<String>[] lsa = new ArrayList<String>[10]; // error
Copy after login

If possible, may lead to type insecurity. Such as:

Object o = lsa;
Object []oa = (Object[])o;
List<Integer> li = new ArrayList<Integer>();
li.add(new Integer(3));
oa[1] = li;
String s = lsa[1].get(0); // runtime error
Copy after login

I hope this article will be helpful to everyone’s java programming.

For more articles related to the summary of the usage of generics in Java, please pay attention to the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!