英文: Valgrind illegal hardware instruction with Zig 问题 这是我使用Valgrind调试一个简单的Zig代码泄漏内存时的代码: const std =...
Capy-template 构建错误
英文: Capy-template build errors 问题 我在Ubuntu上使用git安装了capy-template。我遇到了大量的Windows错误。我对zig完全不了解,也不知道为什么...
如何在Zig中从函数返回Writer和Reader?
英文: How to Return a Writer and a Reader from a function in zig? 问题 我正在创建一个简单的程序,它从文件中读取数据然后处理该文件。 我看...
释放 Zig 中 ArrayList 中项的内存的惯用方式([] const u8):
英文: Idiomatic way to free item memory in a zig ArrayList([] const u8) 问题 我有一个ArrayList([]const u8)。我...
在Zig中如何将数字以十六进制打印出来?
英文: How to print a number as hexadecimal in Zig? 问题 pub fn main() void { const foo: u8 = 128; std.de...
预期类型为’i32’,找到’usize’。
英文: expected type 'i32', found 'usize' 问题 我目前正在尝试使用Zig解决一些LeetCode问题,其中包括两数之和问题。以下是我...
如何在Zig中进行条件编译?
英文: How to do conditional compilation with Zig? 问题 例如,我可以使用CMake为C/C++预处理器添加定义 add_definitions(-DFOO...
如何查看 Ziglang 程序的汇编输出?
英文: How do I look at the assembly output of a Ziglang program? 问题 Zig版本 0.11.0-dev.3299+34865d693 问题...
如何在Zig中在编译期获取字段的值
英文: How to get the field value in comptime in zig 问题 I want to make a deserializer in Zig. Now I cou...
如何正确使用Zig的缓冲写入器和读取器,以避免输出不完整或奇怪?
英文: How can I properly use Zig's buffered writer and reader without incomplete or strange output...