本文介绍了在Java中使用arrayList增加Integer的最佳方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在ArrayList中递增Integer的最简洁方法是什么?
What is the cleanest way to increment an Integer in an ArrayList?
ArrayList<Integer> ints = new ArrayList<>();
ints.add(5);
ints.add(9);
增加最后一个元素的最简洁方法是什么?
What is the cleanest way to increment the last element?
ints.set(ints.size() - 1,ints.get(ints.size() - 1)+ 1);
似乎很难看我。
推荐答案
也许你需要使用另一种数据结构?
Maybe you need to use another structure of data?
LinkedList<AtomicInteger> list = new LinkedList<AtomicInteger>();
ints.add(new AtomicInteger(5));
ints.add(new AtomicInteger(9));
list.getLast().incrementAndGet();
这篇关于在Java中使用arrayList增加Integer的最佳方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!