进入房产

class Vector {
    double x
    double y
}
def points = [
    new Vector(x: 10, y: -5),
    new Vector(x: -17.5, y: 3),
    new Vector(x: -3.3, y: -1)
]

assert points*.x == [10, -17.5, -3.3]

注意:*是可选的。我们也可以在下面的行中编写上面的语句,Groovy 编译器仍然会对此感到高兴。

assert points.x == [10, -17.5, -3.3]