Groovy是否通过多个分配(如Javascript)进行对象分解:
let options = {
title: "Menu",
width: 100,
height: 200
};
let {title, width, height} = options;
alert(title); // Menu
alert(width); // 100
alert(height); // 200
答案 0 :(得分:1)
Groovy没有JavaScript的对象解构方法……它仅具有基于索引的解构方法
https://groovy-lang.org/semantics.html#_object_destructuring_with_multiple_assignment