You can test it yourself doing some test like below:
public static void main(String[] args) {
    ArrayList<Long> array = new ArrayList<Long>(99999);
    int i = 0;
    while (i < 99999) {
        array.add(1L);
        i++;
    }
    long ini1 = System.currentTimeMillis();
    i = 0;
    for (int j = 0; j < array.size(); j++) {
        i += array.get(j);
    }
    long end1 = System.currentTimeMillis();
    System.out.println("Time1: " + (end1 - ini1));
    long ini2 = System.currentTimeMillis();
    i = 0;
    for (int j = 0; j < 99999; j++) {
        i += array.get(j);
    }
    long end2 = System.currentTimeMillis();
    System.out.println("Time2: " + (end2 - ini2));
}
Output:
Time1: 13
Time2: 10
I think that the difference its irrelevant in most applications and cases, i run the test several times and the times vary but the difference keeps "constant" at least in terms of percentage...