如何读取按位运算符 OR (|) 的结果?

发布于 2024-11-16 18:35:45 字数 224 浏览 2 评论 0原文

我想要确认 Android XML 文件中的按位运算符。例如这一行

android:layout_gravity="center_horizontal|bottom"

我应该如何阅读它?是从Java继承的规则还是Android有自己的按位运算符解释?

是否支持所有位运算符?如果是,您能给我展示其他运营商的示例吗(链接也可以)?

谢谢

I would like the confirmation on bitwise operators inside Android XML files. For example this line

android:layout_gravity="center_horizontal|bottom"

How should I read it? Are the rules inherited from Java or Android does its own interpretation of bitwise operators?

Are all bitwise operators supported? If yes, could you show me the example of other operators (link is fine as well)?

Thanks

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

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

发布评论

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

评论(2

小糖芽 2024-11-23 18:35:45
2|1 = 3
2&1 = 0
3&1 = 1

central_horizo​​ntal、bottom 是整数,因此您可以使用此结构

    int center_horizontal = 0x05; //just for clarification
    int other_orientation = 0x10;
    int orietntation = center_horizontal | other_orientation;

//this condition returns true
    if((orientation¢er_horizontal)==center_horizontal){
        //something to do
        }
2|1 = 3
2&1 = 0
3&1 = 1

central_horizontal, bottom are integers so you can use this construction

    int center_horizontal = 0x05; //just for clarification
    int other_orientation = 0x10;
    int orietntation = center_horizontal | other_orientation;

//this condition returns true
    if((orientation¢er_horizontal)==center_horizontal){
        //something to do
        }
阳光①夏 2024-11-23 18:35:45

android_layout_gravity 的值由 Android 代码解析。如此处所述,此处唯一可识别的运算符是|。我不认为将 | 解释为按位 OR 运算符是规范的一部分。 (例如,center_horizo​​ntal 是 0x05,right 是 0x01;它们的按位 OR 将只是 0x05。)

The value of android_layout_gravity is parsed by Android code. As documented here, the only recognized operator here is |. I don't believe that interpreting | as bitwise OR operator is part of the spec. (For instance, center_horizontal is 0x05 and right is 0x01; their bitwise OR would just be 0x05.)

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