-=
설명
이것은 한 변수와 다른 상수 또는 변수에 뺄셈을 하는 편리한 단축이다.
문법
x -= y; // x = x - y; 와 같다.
매개변수
- x: 변수. 허용되는 자료 형: int, float, double, byte, short, long
- y: 변수 또는 상수. 허용되는 자료 형: int, float, double, byte, short, long
예제 코드
void setup() {
Serial.begin(9600);
int x = 20;
x -= 2; // x 는 18
Serial.print("x = ");
Serial.println(x);
}
void loop() {
}
시리얼 모니터에 결과:
COM6
x = 18
Autoscroll
Clear output
9600 baud
Newline
더보기
- 언어 : += (복합 덧셈)
- 언어 : &= (복합 비트 AND)
- 언어 : |= (복합 비트 OR)
- 언어 : ^= (복합 비트 XOR)
- 언어 : /= (복합 나눗셈)
- 언어 : *= (복합 곱셈)
- 언어 : -- (감소)
- 언어 : ++ (증가)
- 언어 : Normal Subtraction
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.