跳转到内容

Ada 编程/分隔符/-

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

Ada. Time-tested, safe and secure.
Ada. 经时间考验,安全可靠。

运算符

[编辑 | 编辑源代码]

标准运算

[编辑 | 编辑源代码]

算术减法

[编辑 | 编辑源代码]

“-”运算符定义为所有数值类型的算术减法。

function "-" (Left, Right : T) return T;
A : constant Float   := 5.0 - 2.0;  -- A is now 3.0
B : constant Integer := 5 - 2;      -- B is also 3

“-”一元运算符定义为所有数值类型的算术负号。

function "-" (Left : T) return T;
A : constant Float   := -5.0;
B : constant Integer := -5;
C : constant Integer := -B;  -- C is now 5

维基教科书

[编辑 | 编辑源代码]

Ada 95 参考手册

[编辑 | 编辑源代码]

Ada 2005 参考手册

[编辑 | 编辑源代码]



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