Java 位操作 - (num >>= 1) 的作用是什么?

发布于 2024-10-30 23:52:04 字数 369 浏览 1 评论 0原文

我正在查看一些将数字输出为带有前缀 0 的二进制形式的代码。

    byte number = 48;
    int i = 256; //max number * 2
    while( (i >>= 1) > 0) {
        System.out.print(((number & i) != 0 ? "1" : "0"));
    }

并且不明白 i >>= 1 的作用。我知道i >>> 1 向右移动 1 位,但不明白 = 的作用,据我所知,不可能搜索“>>=” ” 来了解它的含义。

I was looking at some code that outputs a number to the binary form with prepended 0s.

    byte number = 48;
    int i = 256; //max number * 2
    while( (i >>= 1) > 0) {
        System.out.print(((number & i) != 0 ? "1" : "0"));
    }

and didn't understand what the i >>= 1 does. I know that i >> 1 shifts to the right by 1 bit but didn't understand what the = does and as far as I know, it is not possible to do a search for ">>=" to find out what it means.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久随 2024-11-06 23:52:04

i >>= 1 只是 i = i >>> 的简写形式。 1i += 4i = i + 4 的缩写

编辑:具体来说,这些都是 复合赋值运算符

i >>= 1 is just shorhand for i = i >> 1 in the same way that i += 4 is short for i = i + 4

EDIT: Specifically, those are both examples of compound assignment operators.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文