Java Vector or ArrayList for Primitives

后端 未结 5 2261
滥情空心
滥情空心 2020-12-09 03:35

Is there an expandable array class in the Java API equivalent to the Vector or ArrayList class that can be used with primitives (int, char, double,

5条回答
  •  余生分开走
    2020-12-09 03:58

    Eclipse Collections has primitive ArrayLists for all primitive types, as well as primitive Sets, Bags, Stacks and Maps. There are immutable versions of all of the primitive container types as well.

    Note: I am a committer for Eclipse Collections.

提交回复
热议问题