Rexx - bittst() 方法

该方法用于指示位串中指定位的状态。

语法

bitcomp(binstring, bit) 

参数

  • binstring − 二进制字符串值。

  • bit − 需要测试的bit值。

返回值

布尔值返回指示参数字符串中指定位的状态。

示例

/* 主程序 */
options arexx_bifs 
say bittst('0313'x,4) 

当我们运行上面的程序时,我们将得到以下结果。

输出

1

❮ rexx_regina.html