作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 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/
我是一名优秀的程序员,十分优秀!