進入房產

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]