現在Androidアプリを学習しています。 以下コードの解釈がわかりません。 呼び出し int idx = rand(6); private static Rondom rand = new Rondom(); public static int rand(int num) { return (rand.nextInt() >>> 1) % num; } 特に >>> の記号が意味不明です。 ご教授のほどよろしくお願い致します。
↧