struct Point {
x: f64,
y: f64,
}
enum Shape {
Circle(Point, f64),
Rectangle(Point, Point),
}
let my_shape = Shape::Circle(Point { x: 0.0, y: 0.0 }, 10.0);
我想打印出circle
的第二个属性,这里是 10.0。我试过my_shape.last
and my_shape.second
,但都没有奏效。
在这种情况下,我应该怎么做才能打印出 10.0?