Home > Java > Javagetting Started > The difference between T and ? in java generics

The difference between T and ? in java generics

王林
Release: 2020-01-15 16:28:17
Original
5947 people have browsed it

The difference between T and ? in java generics

T represents a type.

Add to the class:

class SuperClass<A>{}
Copy after login

Add to the method:

public <T>void fromArrayToCollection(T[] a, Collection<T> c){}
Copy after login

(Free learning video tutorial sharing: java video tutorial)

The on the method means that generic parameters are used in the brackets. If generics are passed in the class, they do not need to be passed here. The generic parameters on the calling type are provided, provided that they are used in the method. The generic type is consistent with the generic type passed in the class.

class People<T>{
public void show(T a) {
   }
}
Copy after login

T extends T2 means that the passed parameter is T2 or a subtype of T2.

? is a wildcard character and refers to all types.

is generally used to define a reference variable. The advantage of this is that, as shown below, defining a sup reference variable can point to multiple objects.

SuperClass<?> sup = new SuperClass<String>("lisi");
sup = new SuperClass<People>(new People());
sup = new SuperClass<Animal>(new Animal());
Copy after login

If you don’t use ?, and use a fixed type, then:

SuperClass<String> sup1 = new SuperClass<String>("lisi");
SuperClass<People> sup2 = new SuperClass<People>("lisi");
SuperClass<Animal> sup3 = new SuperClass<Animal>("lisi");
Copy after login

This is the benefit of ? wildcard.

Recommended related articles and tutorials: java introductory tutorial

The above is the detailed content of The difference between T and ? in java generics. For more information, please follow other related articles on 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