スポンサーリンク /= (compound division) スポンサーリンク Twitter Facebook はてブ Pocket LINE コピー 2022.08.07 2021.09.03 スポンサーリンク 説明 変数を他の定数や変数で割るための便利な略記法です。 構文 x /= y; // equivalent to the expression x = x / y; x int、float、double、byte、short、long y ゼロではない変数または定数int、float、double、byte、short、long コード例 x = 2; x /= 2; // x now contains 1