Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试着用谷歌搜索这个警告,似乎找到了其他警告,但似乎有点不对劲。
类型安全:方法 put(int, Object) 属于原始类型 SparseArray。对泛型类型 SparseArray 的引用应该被参数化
有人可以向我解释这个警告吗?
SparseArray适用于Java 泛型。理想情况下,您应该将其声明为SparseArray<WhateverYourValueClassIs>然后存储WhateverYourValueClassIsvia的实例put()。
SparseArray
SparseArray<WhateverYourValueClassIs>
WhateverYourValueClassIs
put()