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
i think it is the LinkedList
vector (c++) <===========> linkedlist(java) v.front() <===========> l.peekFirst() v.back() <===========> l.peekLast() v.push_back(x) <===========> l.add(x) v.pop_back() <===========> l.pollLast()