가능한 중복 :
변수를 어디에서 선언합니까? 방법의 상단 또는 필요할 때?
Java에서 루프 내부 또는 외부에서 변수를 선언하면 차이가 있습니까?
이거
for(int i = 0; i < 1000; i++) {
int temp = doSomething();
someMethod(temp);
}
이것과 같습니까 (메모리 사용과 관련하여)?
int temp = 0;
for(int i = 0; i < 1000; i++) {
temp = doSomething();
someMethod(temp);
}
임시 변수가 예를 들어 ArrayList라면?
for(int i = 0; i < 1000; i++) {
ArrayList<Integer> array = new ArrayList<Integer>();
fillArray(array);
// do something with the array
}
편집 : javap -c
나는 다음과 같은 결과를 얻었다
루프 외부 변수 :
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
루프 내부 변수 :
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
그리고 관심을 끌기 위해이 코드는 다음과 같습니다.
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++;
}
}
이것을 생성합니다 :
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
그러나 최적화는 런타임에 발생합니다. 최적화 된 코드를 볼 수있는 방법이 있습니까? (오래 편집하다 죄송합니다)