其他分享
首页 > 其他分享> > Type argument cannot be of primitive type

Type argument cannot be of primitive type

作者:互联网

创建泛型集合List的时候报错,提示为:Type argument cannot be of primitive type

原因:泛型类型参数不能是原始数据类型,而应该是对象。因为在编译时会把带泛型的转换成Object类型,而基本数据类型不属于Object,所以比如想放int类型,就需要使用它的封装类Integer类型,而不能是int

参考:https://www.cnblogs.com/js2086/p/15106397.html

标签:primitive,int,Object,argument,泛型,cannot,类型,type
来源: https://www.cnblogs.com/2008nmj/p/16661265.html