Java equivalent of std::deque

前端 未结 4 1813
执念已碎
执念已碎 2020-12-10 13:36

I\'m a relatively new Java programmer coming from C++/STL, and am looking for a class with these characteristics (which the C++ std::deque has, as I understand it):

4条回答
  •  孤城傲影
    2020-12-10 14:07

    Interesting... I was just finishing reading Java Generics and Collections and it has a brief discussion of this kind of collection including a link to the Java Specialists' Newsletter which includes a CircularArrayList that might do what I need.

提交回复
热议问题