跳转到内容

Ada 编程/分隔符/+

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

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

运算符

[编辑 | 编辑源代码]

标准运算

[编辑 | 编辑源代码]

算术加法

[编辑 | 编辑源代码]

“+”运算符被定义为所有数值类型的算术加法。

function "+" (Left, Right : T) return T;

“+”运算符被定义为所有数值类型的算术加号。

function "+" (Right : T) return T;
A : constant Float   := +5.0;  -- A is now 5.0
B : constant Integer := +5;    -- B is also 5

常见非标准运算

[编辑 | 编辑源代码]

类型转换

[编辑 | 编辑源代码]

加号运算符通常用于创建类型转换运算符

function "+" (Left : T1) return T2;

另请参见

[编辑 | 编辑源代码]

维基教科书

[编辑 | 编辑源代码]

Ada 95 参考手册

[编辑 | 编辑源代码]

Ada 2005 参考手册

[编辑 | 编辑源代码]



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