Java倒叙遍历集合

for (int i = list.size() - 1; i >= 0; i--) {
    System.out.println(i+":"+list.get(i));
}