Duplicata possible:
où déclarez-vous les variables? Le sommet d'une méthode ou quand vous en avez besoin?
Cela fait-il une différence si je déclare des variables à l'intérieur ou à l'extérieur d'une boucle en Java?
Est-ce
for(int i = 0; i < 1000; i++) {
int temp = doSomething();
someMethod(temp);
}
égal à cela (en ce qui concerne l'utilisation de la mémoire)?
int temp = 0;
for(int i = 0; i < 1000; i++) {
temp = doSomething();
someMethod(temp);
}
Et si la variable temporaire est par exemple une ArrayList?
for(int i = 0; i < 1000; i++) {
ArrayList<Integer> array = new ArrayList<Integer>();
fillArray(array);
// do something with the array
}
EDIT: avec javap -c
j'ai obtenu la sortie suivante
Variable en dehors de la boucle:
public static void main(java.lang.String[]);
Code:
0: iconst_0
1: istore_1
2: iconst_0
3: istore_2
4: iload_2
5: sipush 1000
8: if_icmpge 25
11: invokestatic #2 // Method doSomething:()I
14: istore_1
15: iload_1
16: invokestatic #3 // Method someMethod:(I)V
19: iinc 2, 1
22: goto 4
25: return
Variable à l'intérieur de la boucle:
public static void main(java.lang.String[]);
Code:
0: iconst_0
1: istore_1
2: iload_1
3: sipush 1000
6: if_icmpge 23
9: invokestatic #2 // Method doSomething:()I
12: istore_2
13: iload_2
14: invokestatic #3 // Method someMethod:(I)V
17: iinc 1, 1
20: goto 2
23: return
Et pour les intéressés, ce code:
public class Test3 {
public static void main(String[] args) {
for(int i = 0; i< 1000; i++) {
someMethod(doSomething());
}
}
private static int doSomething() {
return 1;
}
private static void someMethod(int temp) {
temp++;
}
}
produit ceci:
public static void main(java.lang.String[]);
Code:
0: iconst_0
1: istore_1
2: iload_1
3: sipush 1000
6: if_icmpge 21
9: invokestatic #2 // Method doSomething:()I
12: invokestatic #3 // Method someMethod:(I)V
15: iinc 1, 1
18: goto 2
21: return
Mais l'optimisation se produit alors lors de l'exécution. Existe-t-il un moyen de regarder le code optimisé? (Désolé pour la longue modification)