在Python中,我可以看到对象有哪些方法和字段:
print dir(my_object)
Groovy中的相同之处(假设它有一个)?
答案 0 :(得分:8)
在Groovy中看起来特别好(未经测试,taken from this link因此代码信用应该去那里):
// Introspection, know all the details about classes :
// List all constructors of a class
String.constructors.each{println it}
// List all interfaces implemented by a class
String.interfaces.each{println it}
// List all methods offered by a class
String.methods.each{println it}
// Just list the methods names
String.methods.name
// Get the fields of an object (with their values)
d = new Date()
d.properties.each{println it}
您正在寻找的一般术语是内省。
答案 1 :(得分:5)
如here所述,找到为String对象定义的所有方法:
"foo".metaClass.methods*.name.sort().unique()
它不像Python版本那么简单,也许其他人可以展示更好的方式。
答案 2 :(得分:0)