I have an ArrayList in Java which is full of int's. I am accessing it through get method. Now, I need array list int objects as ints to perform some operations. So, what I am doing is,
int i = Integer.parseInt(arraylist.get(position).toString()) + 100 ...
Is there any-other nice way to do it (means efficiently) ?
ArrayList. You have anArrayListofIntegerobjects.Integerobjects.intis a primitive type; anintis not an object.