标签: java generics
考虑一个普通的泛型类:
class Blob<T>{ T peanut; }
令我惊讶的是,下面的代码行编译好了:
Blob c=new Blob();
为什么允许这样,以及自动插入什么类型?