Tags
#bloch-effective-java-2ed #java #java-generics
Question
| Term | Example |
|---|
| Parameterized type | List<String> |
| Actual type parameter | String |
| Generic type | List<E> |
| Formal type parameter | E |
| Unbounded wildcard type | List<?> |
| Raw type | List |
| Bounded type parameter | <E extends Number> |
| Recursive type bound | <T extends Comparable<T>> |
| Bounded wildcard type | List<? extends Number> |
| Generic method static | <E> List<E> asList(E[] a) |
| [...] | String.class |
Tags
#bloch-effective-java-2ed #java #java-generics
Question
| Term | Example |
|---|
| Parameterized type | List<String> |
| Actual type parameter | String |
| Generic type | List<E> |
| Formal type parameter | E |
| Unbounded wildcard type | List<?> |
| Raw type | List |
| Bounded type parameter | <E extends Number> |
| Recursive type bound | <T extends Comparable<T>> |
| Bounded wildcard type | List<? extends Number> |
| Generic method static | <E> List<E> asList(E[] a) |
| [...] | String.class |
Tags
#bloch-effective-java-2ed #java #java-generics
Question
| Term | Example |
|---|
| Parameterized type | List<String> |
| Actual type parameter | String |
| Generic type | List<E> |
| Formal type parameter | E |
| Unbounded wildcard type | List<?> |
| Raw type | List |
| Bounded type parameter | <E extends Number> |
| Recursive type bound | <T extends Comparable<T>> |
| Bounded wildcard type | List<? extends Number> |
| Generic method static | <E> List<E> asList(E[] a) |
| [...] | String.class |
If you want to change selection, open document below and click on "Move attachment"
generics terms quick referencexampleParameterized typeListActual type parameterStringGeneric typeListFormal type parameterEUnbounded wildcard typeListRaw typeListBounded type parameterRecursive type bound>Bounded wildcard typeListGeneric method static List asList(E[] a)<span>Type tokenString.class<span><body><html>