即。
Class TheClass{
Date date;
}
现在有一个date
对象,我想找到属于哪个类。这样做的API是什么?这样
TheClass theClass = new TheClass();
Date date = theClass.getDate();
.......
String className = date.getBelongClassName(); // return TheClass or someway to return theClass
答案 0 :(得分:2)
Java对象不知道对它的所有引用。即使JVM也没有这些信息,这就是垃圾收集器必须扫描JVM中的所有引用以查找未使用的对象的原因。