在 Guava 中哪里可以找到 PrimitiveArrays?
我使用的是 Google Collections 中的 com.google.common.collect.PrimitiveArrays
,但我在 Guava 中找不到它,它是否已重命名?我在哪里可以找到它?
I was using com.google.common.collect.PrimitiveArrays
from Google Collections, however I cannot find it in Guava, was it renamed? Where can I find it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
com.google.common.primitives
中有一些类,例如Ints
、Doubles
、Floats
等我认为具有旧的 PrimitiveArrays 类(以及其他一些)的功能。There are classes in
com.google.common.primitives
such asInts
,Doubles
,Floats
, etc. that I think have the functionality of the oldPrimitiveArrays
class (and then some).