Java get last element of a collection

前端 未结 10 791
你的背包
你的背包 2020-12-30 18:47

I have a collection, I want to get the last element of the collection. What\'s the most straighforward and fast way to do so?

One solution is to first toArray(), and

10条回答
  •  温柔的废话
    2020-12-30 19:11

    Or you can use a for-each loop:

    Collection items = ...;
    X last = null;
    for (X x : items) last = x;
    

提交回复
热议问题