跳转到内容

Ada 编程/关键字/xor

来自维基教科书,开放的书籍,开放的世界

Ada. Time-tested, safe and secure.
Ada。经久耐用、安全可靠。

逻辑运算符

[编辑 | 编辑源代码]

布尔运算符

[编辑 | 编辑源代码]
X : Boolean := A = 10 xor B = 10;

数组上的布尔运算符

[编辑 | 编辑源代码]

xor 操作应用于 数组 中的每个布尔值。

type Day_Of_Month is range 1 .. 31;            
type Month_Array is array (Day_Of_Month) of Boolean;

X : Month_Array := Function_1;
Y : Month_Array := Function_2;
Z : Month_Array := X xor Y;

按位运算符

[编辑 | 编辑源代码]

运算符 xor 可用于 模类型 以及布尔 数组 以执行按位运算。

维基教科书

[编辑 | 编辑源代码]

Ada 95 参考资料手册

[编辑 | 编辑源代码]

Ada 2005 参考资料手册

[编辑 | 编辑源代码]

Ada 质量和风格指南

[编辑 | 编辑源代码]


Ada 关键字
abort else new return
abs elsif not reverse
abstract (Ada 95) end null
accept entry select
access exception of separate
aliased (Ada 95) exit or some (Ada 2012)
all others subtype
and for out synchronized (Ada 2005)
array function overriding (Ada 2005)
at tagged (Ada 95)
generic package task
begin goto parallel (Ada 2022) terminate
body pragma then
if private type
case in procedure
constant interface (Ada 2005) protected (Ada 95) until (Ada 95)
is use
declare raise
delay limited range when
delta loop record while
digits rem with
do mod renames
requeue (Ada 95) xor


Ada 运算符
and and then > + abs &
or or else >= - mod
xor = < * rem in
not /= <= ** / not in
华夏公益教科书