我有一个具有默认值的公共 UUID 的 scala 特征:
trait pet {
var uuid_ : UUID = UUID.randomUUID
}
现在我正在创建多个类,也在 scala 中:
class dog extends pet {
var foo = 1
}
class cat extends pet {
}
class fish extends pet {
}
之后,我在 Java 中创建了一个方法(混合了两种语言的旧项目)。
在这里,我的问题被剪断了。在变量somePet中是dog,cat或的一个实例fish。但尚不清楚它们到底是什么:
// printing all variables in the console for human testing
Serializer.printAllFields(somePet);
// The somePet Variable must be a pet
if(!pet.class.isAssignableFrom(somePet.getClass()))
throw new Exception("Not a pet.");
// get the UUID of the pet
UUID uuid_;
try {
Field f = pet.class.getField("uuid_");
f.setAccessible(true);
uuid_ = (UUID) f.get(somePet);
}catch(Exception e){
// no uuid found
throw e;
}
但是当我运行代码时,出现以下错误:
Exception in thread "main" java.lang.NoSuchFieldException: uuid_
并且堆栈跟踪点与Field f = pet.class.getField("uuid_");.
但是代码有什么问题?
我认为另一种方法是将这条确切的行替换为:
Field f = ntObj.getClass().getField("uuid_");
但这也失败了。
那么变量在哪里uuid_呢?
因为当我使用序列化器在当前控制台中打印出所有变量时somePet,我会得到类似
* cat.uuid_ = 34d7a781-472d-4d98-861e-7cff08045445;
或者
* dog.foo = 1
* dog.uuid_ = 34d7a781-472d-4d98-861e-7cff08045445;
在控制台中。
因此,该变量uuid_具有默认值。
(我正在使用这篇文章中的序列化程序)
那么如何uuid_在我的 java 代码片段中获取变量呢?
潇湘沐
相关分类