54_manypointers.zig 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // You can also make pointers to multiple items without using a slice.
  3. //
  4. // var foo: [4]u8 = [4]u8{ 1, 2, 3, 4 };
  5. // var foo_slice: []u8 = foo[0..];
  6. // var foo_ptr: [*]u8 = &foo;
  7. //
  8. // The difference between foo_slice and foo_ptr is that the slice has
  9. // a known length. The pointer doesn't. It is up to YOU to keep track
  10. // of the number of u8s foo_ptr points to!
  11. //
  12. const std = @import("std");
  13. pub fn main() void {
  14. // Take a good look at the type of the zen12 string:
  15. const zen12: *const [21]u8 = "Memory is a resource.";
  16. // It would also have been valid to coerce this to a slice:
  17. //
  18. // const zen12: []const u8 = "...";
  19. //
  20. // Now let's turn this into a "many pointer":
  21. const zen_manyptr: [*]const u8 = zen12;
  22. // It's okay to access zen_manyptr just like an array or slice as
  23. // long as you keep track of the length yourself!
  24. //
  25. // A "string" in Zig is a pointer to an array of const u8 values
  26. // or a slice of const u8 values, into one, as we saw above). So,
  27. // we could treat a "many pointer" of const u8 a string as long
  28. // as we can CONVERT IT TO A SLICE. (Hint: we do know the length!)
  29. //
  30. // Please fix this line so the print below statement can print it:
  31. const zen12_string: []const u8 = zen_manyptr;
  32. // Here's the moment of truth!
  33. std.debug.print("{s}\n", .{zen12_string});
  34. }
  35. //
  36. // Are all of these pointer types starting to get confusing?
  37. //
  38. // FREE ZIG POINTER CHEATSHEET! (Using u8 as the example type.)
  39. // +---------------+----------------------------------------------+
  40. // | u8 | one u8 |
  41. // | *u8 | pointer to one u8 |
  42. // | [2]u8 | two u8s |
  43. // | [*]u8 | pointer to unknown number of u8s |
  44. // | [2]const u8 | two immutable u8s |
  45. // | [*]const u8 | pointer to unknown number of immutable u8s |
  46. // | *[2]u8 | pointer to an array of 2 u8s |
  47. // | *const [2]u8 | pointer to an immutable array of 2 u8s |
  48. // | []u8 | slice of u8s |
  49. // | []const u8 | slice of immutable u8s |
  50. // +---------------+----------------------------------------------+