English 中文(简体)
理解在 Java 返回声明中的班级例外
原标题:Understand a class cast exception in java return statement

我读过这些页面上关于班级例外的许多其他问题, 我想确定我的问题是同样必要的(因为与编译时间相比,在上课期间不知道班级受约束的类型)。

所以这是我的考试课...

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 的 第三个对象中 。

如果您需要更多信息,请询问(如果您需要,我甚至可以寄一份我的图书馆副本)。

戴维·戴维

最佳回答

keysSet () return a Set , not HashSet . 所以 return this.ObjectInfo.keysSet (); should do.

缩略语规则 : 总是通过界面而不是类来引用收藏( 以及一般对象 ) 。 因此, 请选择 < code> List 和 < code>, 而不是 < code> set , 而不是 < code > 和 < ArrayList < / code > 和 < code> 。 只有当您对对象进行即时或需要具体执行的特定特性时, 才会使用具体类型 。

问题回答
public Set<String> getObjectKeys(){
   return this.ObjectInfo.keySet();
}

这对你有用吗?





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签