이항 연산자
특정한 작업을 하기 위해 사용하는 기호를 의미한다.
산술연산자 arithmetic
더하기, 빼기, 곱하기,나누기, 나머지
+ , - , * , / , %
단항 연산자
+
: 양수를 표현한다. 실제로는 사용할 필요가 없다.
-
: 음수를 표현한다.
++
: 증가 (increment) 연산자러 항의 값을 1씩 증가 시킨다.
--
: 감소 (Decrement) 연산자
public class PrePostDemo{
public static void main(String[] args){
int i = 3;
i++;
System.out.println(i); // 4 출력
++i;
System.out.println(i); // 5 출력
System.out.println(++i); // 6 출력
(괄호 안에서 더해지는 연산자)
System.out.println(i++); // 6 출력
(괄호 밖에서 더해지는 연산자)
System.out.println(i); // 7 출력
}
}