java中如何按位或操作?

package org.nhooo.example.lang;

public class ORDemo {
    public static void main(String[] args) {
        int numberA = 16;
        int numberB = 4;

        //运算符“ |” 用于进行按位或运算"|" is used for doing bitwise OR operation
        int result = numberA | numberB;

        System.out.println(numberA + " | " + numberB + " = " + result);

        // 以二进制格式打印结果
        System.out.println(Integer.toBinaryString(numberA) +
                " | " + Integer.toBinaryString(numberB) +
                " = " + Integer.toBinaryString(result));
    }
}

代码段的结果:

16 | 4 = 20
10000 | 100 = 10100