跳轉至內容

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
華夏公益教科書