-=

Last revision:2024/05/14

名称

-=

説明

ある変数から数値を引いた結果を、元の変数に再度代入する際に利用できる便利な省略形である。

書式

x -= y; // equivalent to the expression x = x - y;

引数

x任意の変数。利用可能な型: int, float, double, byte, short。long。
y任意の変数もしくは定数。利用可能な型: int, float, double, byte, short, long。

使用例

1
2
x = 20;
x -= 2; // x now contains 18

参照

オリジナルのページ

https://docs.arduino.cc/language-reference/en/structure/compound-operators/compoundSubtraction/

最終更新日

August 16, 2026

inserted by FC2 system