Groovy是否具有像Javascript这样的对象分解功能?

时间:2019-10-17 12:01:39

标签: groovy destructuring

Groovy是否通过多个分配(如Javascript)进行对象分解:

let options = {
  title: "Menu",
  width: 100,
  height: 200
};

let {title, width, height} = options;

alert(title);  // Menu
alert(width);  // 100
alert(height); // 200

1 个答案:

答案 0 :(得分:1)

Groovy没有JavaScript的对象解构方法……它仅具有基于索引的解构方法

https://groovy-lang.org/semantics.html#_object_destructuring_with_multiple_assignment