what is generics code example

Example 1: definition of generic

The definition of generic is something without a brand name. An example of generic is the type of soap with a store's label that says "soap," but without a brand name.

Example 2: java generics type

Java Generic Type Naming convention helps us understanding code easily and having a naming convention is one of the best practices of Java programming language. So generics also comes with its own naming conventions. Usually, type parameter names are single, uppercase letters to make it easily distinguishable from java variables. The most commonly used type parameter names are:

EElement (used extensively by the Java Collections Framework, for example ArrayList, Set etc.)
KKey (Used in Map)
NNumber
TType
VValue (Used in Map)
S,U,V etc.2nd, 3rd, 4th types

Tags:

Java Example