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

The difference between T and ? in java generics

王林
王林Original
2020-01-15 16:28:175736browse

The difference between T and ? in java generics

T represents a type.

Add to the class:

class SuperClass{}

Add to the method:

public void fromArrayToCollection(T[] a, Collection c){}

(Free learning video tutorial sharing: java video tutorial)

The 8742468051c85b06f0a0af9e3e506b5c 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{
public void show(T a) {
   }
}

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("lisi");
sup = new SuperClass(new People());
sup = new SuperClass(new Animal());

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

SuperClass sup1 = new SuperClass("lisi");
SuperClass sup2 = new SuperClass("lisi");
SuperClass sup3 = new SuperClass("lisi");

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!

Statement:
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