반응형
질문했던 내용
Cache 의 역할 궁금한 내용 :
이번 자바를 배우는 시간에 후위증가 연산자를 통해서 출력을 해보았다.
(i+1) 로 출력하는 것과 (i++) 로 출력하는 것에는 차이가 없다고 생각했는데
출력한 값에 차이가 있어서 GPT에게 물어보았고,
i++는 후위증가 연산자라서 출력이 된 후에 i의 값을 증가시킨다는 것을 배울 수 있었다.
package bitcamp.ex05;
//# 증감 연산자 : 후위(post-fix) 증가 연산자
//
public class Exam0610_copy {
public static void main(String[] args) {
int i = 2;
System.out.println(i); // 2
System.out.println((i+1)); // 3
System.out.println((i++)); // 2
System.out.println(i); // 3
}
}
반응형