Um tipo bruto é um objeto de uma classe ou interface genérica se seus argumentos de tipo não forem passados durante sua criação. O exemplo a seguir mostrará o conceito mencionado acima.
Exemplo
Crie o seguinte programa java usando qualquer editor de sua escolha.
GenericsTester.java
package com.tutorialspoint;
public class GenericsTester {
public static void main(String[] args) {
Box<Integer> box = new Box<Integer>();
box.set(Integer.valueOf(10));
System.out.printf("Integer Value :%d\n", box.getData());
Box rawBox = new Box();
//No warning
rawBox = box;
System.out.printf("Integer Value :%d\n", rawBox.getData());
//Warning for unchecked invocation to set(T)
rawBox.set(Integer.valueOf(10));
System.out.printf("Integer Value :%d\n", rawBox.getData());
//Warning for unchecked conversion
box = rawBox;
System.out.printf("Integer Value :%d\n", box.getData());
}
}
class Box<T> {
private T t;
public void set(T t) {
this.t = t;
}
public T getData() {
return t;
}
}
Isso produzirá o seguinte resultado.
Resultado
Integer Value :10
Integer Value :10
Integer Value :10
Integer Value :10