本文整理汇总了Golang中github.com/zxh0/jvm/go/jvmgo/rtda/heap.Object.GetFieldValue方法的典型用法代码示例。如果您正苦于以下问题:Golang Object.GetFieldValue方法的具体用法?Golang Object.GetFieldValue怎么用?Golang Object.GetFieldValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/zxh0/jvm/go/jvmgo/rtda/heap.Object
的用法示例。
在下文中一共展示了Object.GetFieldValue方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: _getGoField
func _getGoField(fieldObj *heap.Object) *heap.Field {
extra := fieldObj.Extra()
if extra != nil {
return extra.(*heap.Field)
}
root := fieldObj.GetFieldValue("root", "Ljava/lang/reflect/Field;").(*heap.Object)
return root.Extra().(*heap.Field)
}
示例2: _getGoMethod
func _getGoMethod(methodObj *heap.Object, isConstructor bool) *heap.Method {
extra := methodObj.Extra()
if extra != nil {
return extra.(*heap.Method)
}
if isConstructor {
root := methodObj.GetFieldValue("root", "Ljava/lang/reflect/Constructor;").(*heap.Object)
return root.Extra().(*heap.Method)
} else {
root := methodObj.GetFieldValue("root", "Ljava/lang/reflect/Method;").(*heap.Object)
return root.Extra().(*heap.Method)
}
}
示例3: Unbox
func Unbox(obj *heap.Object, primitiveDescriptor string) interface{} {
return obj.GetFieldValue("value", primitiveDescriptor)
}
示例4: _getPath
func _getPath(fileObj *heap.Object) string {
pathStr := fileObj.GetFieldValue("path", "Ljava/lang/String;").(*heap.Object)
return rtda.GoString(pathStr)
}
示例5: GoString
// java.lang.String -> go string
func GoString(jStr *heap.Object) string {
charArr := jStr.GetFieldValue("value", "[C").(*heap.Object)
return _utf16ToString(charArr.Chars())
}