증감연산자1 JAVA(자바) - 단항 연산자 단항 연산자 - 피연산자가 1개인 연산자 - 종류 1. 부호 연산자 : +, - 2. 증감 연산자 : ++, -- 3. 부정 연산자 : ! 4. 비트 반전 연산자 : ~ 부호 연산자 : +, - 연산식 설명 + 피연산자 피연산자의 부호 유지 - 피연산자 피연산자의 부호 변경 -boolean 타입과 char 타입을 제외한 기본 타입에 사용 가능 public class SingOperationExample { public static void main(String[] args) { int x = 100; int result1 = +x; int result2 = -x; System.out.println("result1 ="+result1); System.out.println("result2 ="+result2.. 2020. 12. 18. 이전 1 다음