Skip to content

Commit

Permalink
更新未定义行为的整数溢出部分
Browse files Browse the repository at this point in the history
  • Loading branch information
jinzhongjia committed Dec 26, 2023
1 parent 3d6ec6d commit fbcd2d9
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
2 changes: 1 addition & 1 deletion learn/basic/basic_type/number.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ zig 中,有以下默认操作可以导致溢出:
- `-%`(取反环绕)
- `*%`(乘法环绕)
这些操作符保证了环绕语义(即取出溢出的高位)。
这些操作符保证了环绕语义(它们会取计算后溢出的值)。
## 浮点数
Expand Down
45 changes: 44 additions & 1 deletion learn/more/undefined_behavior.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,51 @@ const byte: u8 = @intCast(spartan_count);
## 整数溢出
常规的运算可能导致溢出,如加 `+``-``*``/` 取反 `-`
常规的运算可能导致溢出,如加 `+``-``*``/` 取反 `-` 运算可能出现溢出。
还有 [`@divTrunc`](https://ziglang.org/documentation/master/#divTrunc)、[`@divFloor`](https://ziglang.org/documentation/master/#divFloor)、[`@divExact`](https://ziglang.org/documentation/master/#divExact),可能造成溢出。
标准库提供的函数可能存在溢出:
- `@import("std").math.add`
- `@import("std").math.sub`
- `@import("std").math.mul`
- `@import("std").math.divTrunc`
- `@import("std").math.divFloor`
- `@import("std").math.divExact`
- `@import("std").math.shl`
为了处理这些情况,zig 提供了几个溢出检测函数来处理溢出问题:
- [`@addWithOverflow`](https://ziglang.org/documentation/master/#addWithOverflow)
- [`@subWithOverflow`](https://ziglang.org/documentation/master/#subWithOverflow)
- [`@mulWithOverflow`](https://ziglang.org/documentation/master/#mulWithOverflow)
- [`@shlWithOverflow`](https://ziglang.org/documentation/master/#shlWithOverflow)
以上这些内置函数会返回一个元组,包含计算的结果和是否发生溢出的判断位。
```zig
const print = @import("std").debug.print;
pub fn main() void {
const byte: u8 = 255;
const ov = @addWithOverflow(byte, 10);
if (ov[1] != 0) {
print("overflowed result: {}\n", .{ov[0]});
} else {
print("result: {}\n", .{ov[0]});
}
}
```
除此以外,我们还可以使用环绕(**Wrapping**)操作来处理计算:
- `+%` 加法环绕
- `-%` 减法环绕
- `-%` 取否环绕
- `*%` 乘法环绕
它们会取计算后溢出的值!
## 移位溢出
Expand Down

0 comments on commit fbcd2d9

Please sign in to comment.