test.zig

    1. $ zig test test.zig
    2. 1/1 test "simple union"... access of inactive union field
    3. /home/andy/Downloads/zig/docgen_tmp/test.zig:8:12: 0x2059db in test "simple union" (test)
    4. payload.float = 12.34;
    5. ^
    6. /home/andy/Downloads/zig/lib/std/special/test_runner.zig:61:28: 0x22d9d1 in std.special.main (test)
    7. } else test_fn.func();
    8. ^
    9. /home/andy/Downloads/zig/lib/std/start.zig:334:37: 0x2072dd in std.start.posixCallMainAndExit (test)
    10. const result = root.main() catch |err| {
    11. ^
    12. /home/andy/Downloads/zig/lib/std/start.zig:162:5: 0x207012 in std.start._start (test)
    13. @call(.{ .modifier = .never_inline }, posixCallMainAndExit, .{});
    14. ^
    15. error: the following test command crashed:
    16. docgen_tmp/zig-cache/o/2e7f715609483f0cd9100db66b70c1a0/test

    You can activate another field by assigning the entire union:

    test.zig

    1. const std = @import("std");
    2. const expect = std.testing.expect;
    3. const Payload = union {
    4. int: i64,
    5. float: f64,
    6. boolean: bool,
    7. };
    8. test "simple union" {
    9. expect(payload.int == 1234);
    10. payload = Payload{ .float = 12.34 };
    11. }
    1. $ zig test test.zig
    2. 1/1 test "simple union"... OK
    3. All 1 tests passed.

    In order to use switch with a union, it must be a .

    To initialize a union when the tag is a comptime-known name, see .

    test.zig

    1. $ zig test test.zig
    2. 1/3 test "switch on tagged union"... OK
    3. 2/3 test "@TagType"... OK
    4. 3/3 test "coerce to enum"... OK
    5. All 3 tests passed.

    In order to modify the payload of a tagged union in a switch expression, place a * before the variable name to make it a pointer:

    test.zig

    1. const std = @import("std");
    2. const expect = std.testing.expect;
    3. const ComplexTypeTag = enum {
    4. ok,
    5. not_ok,
    6. };
    7. const ComplexType = union(ComplexTypeTag) {
    8. ok: u8,
    9. not_ok: void,
    10. };
    11. test "modify tagged union in switch" {
    12. var c = ComplexType{ .ok = 42 };
    13. expect(@as(ComplexTypeTag, c) == ComplexTypeTag.ok);
    14. switch (c) {
    15. }
    16. expect(c.ok == 43);
    17. }
    1. $ zig test test.zig
    2. 1/1 test "modify tagged union in switch"... OK
    3. All 1 tests passed.

    Unions can be made to infer the enum tag type. Further, unions can have methods just like structs and enums.

    test.zig

    1. $ zig test test.zig
    2. 1/1 test "union method"... OK
    3. All 1 tests passed.

    test.zig

    1. const std = @import("std");
    2. const expect = std.testing.expect;
    3. const Small2 = union(enum) {
    4. a: i32,
    5. b: bool,
    6. c: u8,
    7. };
    8. test "@tagName" {
    9. expect(std.mem.eql(u8, @tagName(Small2.a), "a"));
    10. }
    1. $ zig test test.zig
    2. 1/1 test "@tagName"... OK
    3. All 1 tests passed.

    An extern union has memory layout guaranteed to be compatible with the target C ABI.

    See also:

    A packed union has well-defined in-memory layout and is eligible to be in a .

    Anonymous Struct Literals syntax can be used to initialize unions without specifying the type:

    1. $ zig test anon_union.zig
    2. All 1 tests passed.