以下为句子列表:
英文: Always run code unchecked by default (for performance sake), but explicitly in checked mode for overflow or underflow prone operations.
中文: 缺省总是以非检查的方式运行(为了性能考虑),但是对易于溢出或下溢的操作显式使用检查模式(图略)。
更详细...
英文: In all integer arithmetic operations, both overflow and underflow shall be ignored. The value returned when either overflow or underflow occurs is implementation defined.
中文: 在所有的整数算术运算中,溢位和不足必须被忽视.发生溢位或不足时,传回值由实作自订.
更详细...
英文: Whether underflow occurs depends on the data-type of the result. For example, the phrase 1 2 - underflows if the result is unsigned and produces the valid signed result -1.
中文: 是否不足会发生是依据结果的资料型别.例如,词组12-对于结果是无号数的就是不足,而会产生正确的有号结果-1.
更详细...
|