I have filled an arraylist<string> with 20 lacs strings. If I want to iterate like this,
for(long i=0;arrlist.size();i++{
arrlist.get(i);
}
But, arrlist.get() doesn't support index as long. Moreover, I cannot use iterator, so, how do I iterate without an Iterator? Pleas don't ask why I'm not using iterator.