我读过这些页面上关于班级例外的许多其他问题, 我想确定我的问题是同样必要的(因为与编译时间相比,在上课期间不知道班级受约束的类型)。
所以这是我的考试课...
public class testCastReturn{
public test(){
HashSet<String> StringHash; //a simple hash set
HashMap(<String, ComplexObject> ObjectInfo; //the String value is the name of the complexObject, and complexObject has multiple members (in this instance it is a java model for a database field so it has info pertaining to Key, size etc)
//create a ComplexObject here
addToObjectInfo(aComplexObject); // add it into the HashMap
//repeat above a number of times....
//now collect the names of those objects
StringHash = getObjectKeys();
}
public void addToObjectInfo(complexObject c){
//put a complex object into the HashMap
ObjectInfo.put(c.getNameID, c); //create a set of key value pairs where the name of the object is the key to get the actual object
}
public HashSet<String> getObjectKeys(){
//retrieve the keys only
return HashSet<String> this.ObjectInfo.keySet(); //fails with classCastException
//this however works
HashSet<String> temp = new HashSet<String>(this.ObjectInfo.keySet());
return temp;
}
}//end class
如果我的理解是对的,这就是为什么我可以以两种形式编译我的代码, 但我只能运行这样的代码, 在那里我明确创建一个临时位置来持有键集, 因为作为运行时间, JVM 无法保证密钥的绑定类型会是什么 在复杂对象中。 请记住, 这个版本是虚构的, 所以可能已经过于简化了, 在我的实际代码中, 我使用一个构建者, 然后将信息传递到最终的分类中, 然后这些分类会被保存在第三个带有 复杂对象的 HashMap 的 第三个对象中 。
如果您需要更多信息,请询问(如果您需要,我甚至可以寄一份我的图书馆副本)。
戴维·戴维