本文介绍了为什么groovy.class返回的值不是.getClass()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

根据

有人可以解释这是为什么吗?为什么 .class 返回与不同的东西getClass()

a 是一个映射时, a.class 是在Groovy中与 a.get(class)相同。正如你在文档中的例子中看到的,这将返回null。这就是为什么规则的趋势是要使用getClass,除非你确定变量不会是地图。


According to http://groovy.codehaus.org/Things+you+can+do+but+better+leave+undone

Can someone explain why this is? Why does .class return something different than getClass()

解决方案

Because when a is a map, a.class is the same in Groovy as a.get( "class" ). As you can see in the example in the docs, this will return null. That's why the rule trends to be to use getClass unless you're absolutely sure the variable won't be a map

这篇关于为什么groovy.class返回的值不是.getClass()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 23:33