短篇版本:我有一个地址;如何在该地址打印内容?
LONG VERSION:我有这个对象,对象有两个字段 - dest和source。来源是作为地址给我的:
Field Detail
dest
public final VVarRef dest
The variable/register to store the value into.
source
public final VMemRef source
The memory location being read.
我需要知道那个地址是什么。
答案 0 :(得分:3)
查看班级VMemRef
的定义/文档。
<强>更新强>
根据API文档链接,类VMemRef
有两个嵌套的子类VMemRef.Global
和VMemRef.Stack
。因此,您必须确定使用instanceof
的哪一个,投射到该类并使用其特定的内容。