Skip to content

Commit

Permalink
改进关于元组字段访问方式的描述
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyqiu authored and jinzhongjia committed Sep 5, 2024
1 parent ea9ffd5 commit 0993570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion course/basic/advanced_type/struct.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ zig 在使用结构体的时候还支持省略结构体类型,只要能让 zig

元组实际上就是不指定字段的(匿名)结构体。

由于没有字段名,zig 会为每个值分配一个整数的字段名,但是它无法通过正常的 `.` 语法来访问,但可以增加一个修饰符 `@""`,通过它使用 `.` 语法访问元组中的元素
由于没有指定字段名,zig 会使用从 0 开始的整数依次为字段命名。但整数并不是有效的标识符,所以使用 `.` 语法访问字段的时候需要将数字写在 `@""`

<<<@/code/release/struct.zig#tuple

Expand Down

0 comments on commit 0993570

Please sign in to comment.