gpt4 book ai didi

rust - 在结构中使用枚举会导致 "unresolved name"错误

转载 作者:行者123 更新时间:2023-11-29 07:53:15 25 4
gpt4 key购买 nike

我有 C 编程背景,开始学习 Rust。

是否可以像下面的代码片段那样在结构中使用 enum

enum Direction {
EastDirection,
WestDirection
}

struct TrafficLight {
direction: Direction, // the direction of the traffic light
time_elapse : i32, // the counter used for the elpase time
}

let mut tl = TrafficLight {direction:EastDirection, time_elapse:0};

当我编译代码时,它提示说 EastDirection 未知。

最佳答案

是的,这是可能的。在 Rust 中,enum 变体(如 EastDirection)默认在全局命名空间中。要创建您的 TrafficLight 实例,请编写:

let mut t1 = TrafficLight {
direction: Direction::EastDirection,
time_elapse: 0,
};

请注意,因为变体不在全局命名空间中,所以您不应在变体名称中重复 enum 名称。所以最好将其更改为:

enum Direction {
East,
West,
}

/* struct TrafficLight */

let mut tl = TrafficLight {
direction: Direction::East,
time_elapse: 0
};

关于rust - 在结构中使用枚举会导致 "unresolved name"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35398673/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com