以下为句子列表:
英文: The ^ operator yields the bitwise XOR (exclusive OR) of its arguments, which must be plain or long integers. The arguments are converted to a common type.
中文: 运算符进行比特级的XOR(异或)运算,参数必须是普通整数或长整数.参数转换成通用类型.
更详细...
英文: The | operator yields the bitwise (inclusive) OR of its arguments, which must be plain or long integers. The arguments are converted to a common type.
中文: 运算符进行比特级的OR(同或)运算,参数必须是普通整数或长整数.参数转换成通用类型.
更详细...
|