Equivalent of std::vector in Java?

后端 未结 9 1259
名媛妹妹
名媛妹妹 2020-12-15 03:16

What would be the closest thing to a std::vector in Java? By this I mean, a class which can take in T into its constructor and then pushBack, popBack() and that is stored in

9条回答
  •  旧时难觅i
    2020-12-15 03:48

    How about simply the Vector class?

    http://download-llnw.oracle.com/javase/6/docs/api/java/util/Vector.html

提交回复
热议问题