我必须将 i8 数字转换为 u8 ( @intCast()
),以便将其添加到 ArrayList(如果数字为负数,我不关心如何进行此转换)。
用它运行这个程序zig test intcast.zig
会返回All 1 tests passed.
:
const std = @import("std");
const SIZE = 30_000;
test "Convert i8 to u8" {
var memory :[SIZE]i8 = [_]i8{65} ** SIZE;
var memory_index: u32 = 10;
var output = std.ArrayList(u8).init(std.heap.page_allocator);
defer output.deinit();
try output.append(@intCast(u8, memory[memory_index]));
std.testing.expectEqualSlices(u8, "A", output.items);
}
但是当我尝试在另一个程序中使用相同的过程时,它不起作用,编译器返回以下错误:
≻ zig test bf.zig
./bf.zig:15:22: error: expected type '[30000]i8', found '@TypeOf(std.array_list.ArrayListAligned(u8,null).append).ReturnType.ErrorSet'
'.' => { try output.append(@intCast(u8, memory[memory_index])); },
这是程序,这是我附加转换后的数字的地方:
for (program) |command| {
switch (command) {
'+' => { memory[memory_index] += 1; },
'-' => { memory[memory_index] -= 1; },
'.' => { try output.append(@intCast(u8, memory[memory_index])); },
请问,谁能告诉我我做错了什么?
我的 zig 是0.6.0+8b82c4010
.