JAVA:我有地址;我该如何打印其内容?

时间:2012-12-03 10:34:23

标签: java

短篇版本:我有一个地址;如何在该地址打印内容?

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. 

我需要知道那个地址是什么。

1 个答案:

答案 0 :(得分:3)

查看班级VMemRef的定义/文档。

<强>更新 根据API文档链接,类VMemRef有两个嵌套的子类VMemRef.GlobalVMemRef.Stack。因此,您必须确定使用instanceof的哪一个,投射到该类并使用其特定的内容。