Consider the following generic class:
class MyClass<T> {
private T t;
public MyClass(T t) {
this.t = t;
}
public T get() {
return t;
}
}
What will the get method return if you create an instance but don't specify the type argument?
MyClass instance = new MyClass("Hello!");