有人请帮我解决下面的java查询,
我想从Java中的Array List计算起始索引和结束索引,有什么方法可以做到这一点......在此先感谢。
答案 0 :(得分:0)
beginning index
始终为0
。 last 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);
}
}