在常规地图中获取密钥

发布于 2024-10-16 04:11:41 字数 207 浏览 2 评论 0原文

def map = [name:"Gromit", likes:"cheese", id:1234]

我想以这样的方式访问地图,我可以得到

像输出应该是

map.keys返回字符串数组的密钥。基本上我只想获得按键

输出:

name
likes
id
def map = [name:"Gromit", likes:"cheese", id:1234]

I would like to access map in such a way that I can get the key

something like the output should be

map.keys returns array of string. basically i just want to get the keys

output:

name
likes
id

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

多像笑话 2024-10-23 04:11:41

尝试 map.keySet ()

如果你想要一个数组:

map.keySet() as String[]; // thx @tim_yates

或者,更 groovy-ish:

map.each{
    key, value -> print key;
}

警告: 在 Jenkins 中,groovy-ish 示例被巧妙地破坏了,因为它依赖于迭代器。迭代器在 Jenkins Pipeline 代码中并不安全,除非包装在 @NonCPS 函数中。

try map.keySet()

and if you want an array:

map.keySet() as String[]; // thx @tim_yates

Or, more groovy-ish:

map.each{
    key, value -> print key;
}

Warning: In Jenkins, the groovy-ish example is subtly broken, as it depends on an iterator. Iterators aren't safe in Jenkins Pipeline code unless wrapped in a @NonCPS function.

花落人断肠 2024-10-23 04:11:41
def map = [name:"Gromit", likes:"cheese", id:1234]
    
println map*.key

在 groovy 中 * 用于迭代所有

def map = [name:"Gromit", likes:"cheese", id:1234]
    
println map*.key

In groovy * is use for iterate all

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文