Is it possible to convert integer arraylist in java to double arraylist. For example, I have;
ArrayList<Integer> array = new ArrayList<Integer>();
one example of how I am using it, is;
System.out.println(array.get(2));
but in the process of printing this out, I want to covert it into double, is it possible?