- Rexx 教程
- Rexx - 首页
- Rexx - 概述
- Rexx - 环境
- Rexx - 安装
- Rexx - 插件安装
- Rexx - 基本语法
- Rexx - 数据类型
- Rexx - 变量
- Rexx - 运算符
- Rexx - 数组
- Rexx - 循环
- Rexx - 决策
- Rexx - 数字
- Rexx - 字符串
- Rexx - 函数
- Rexx - 栈
- Rexx - 文件 I/O
- Rexx - 文件函数
- Rexx - 子程序
- Rexx - 内置函数
- Rexx - 系统命令
- Rexx - XML
- Rexx - Regina
- Rexx - 解析
- Rexx - 信号
- Rexx - 调试
- Rexx - 错误处理
- Rexx - 面向对象
- Rexx - 可移植性
- Rexx - 扩展函数
- Rexx - 指令
- Rexx - 实现
- Rexx - Netrexx
- Rexx - Brexx
- Rexx - 数据库
- 手持式和嵌入式
- Rexx - 性能
- Rexx - 最佳编程实践
- Rexx - 图形用户界面
- Rexx - Reginald
- Rexx - Web 编程
- Rexx 有用资源
- Rexx - 快速指南
- Rexx - 有用资源
- Rexx - 讨论
Rexx - 位运算符
Groovy 提供了四个位运算符。以下是 Groovy 中可用的位运算符。
序号 | 运算符和描述 |
---|---|
1 | bitand 这是按位“与”运算符 |
2 | bitor 这是按位“或”运算符 |
3 | bitxor 这是按位“异或”或“排他或”运算符 |
以下是展示这些运算符的真值表:
p | q | p bitand q | p bitor q | p bitxor q |
---|---|---|---|---|
0 | 0 | 0 | 0 | 0 |
0 | 1 | 0 | 1 | 1 |
1 | 1 | 1 | 1 | 0 |
1 | 0 | 0 | 1 | 1 |
示例
以下程序展示了如何使用各种运算符。
/* Main program */ a = 21 b = 347 Say c2b(a) Say c2b(b) Say c2b(bitand(a,b)) Say c2b(bitor(a,b)) Say c2b(bitxor(a,b)) Exit c2b: return x2b(c2x(arg(1)))
以上程序的输出将是:
0011001000110001 001100110011010000110111 001100100011000000110111 001100110011010100110111 000000010000010100110111
rexx_operators.htm
广告