计算列表中的起始索引和结束索引

时间:2017-11-02 11:23:56

标签: java

有人请帮我解决下面的java查询,

我想从Java中的Array List计算起始索引和结束索引,有什么方法可以做到这一点......在此先感谢。

1 个答案:

答案 0 :(得分:0)

beginning index始终为0last index将为size of the list minus 1。在代码中,它将类似于

import java.util.List;
import java.util.ArrayList;

public class MyClass {
    public static void main(String args[]) {
        List<String> list = new ArrayList<String>();
        list.add("one");
        list.add("two");
        list.add("three");

        int beginIndex = 0; // Always the begin index is zero
        int lastIndex = list.size() - 1; // Size of list minus 1

        System.out.println("Begin Index - " + beginIndex);
        System.out.println("Last Index - " + lastIndex);
    }
}