2

以下のコードのエラーは次のとおりです: オブジェクトを整数にキャストできません。キャストするために他に何を含めるかわかりません。

private RowFilter filter(final int itemsPerPage,final int target) {
        return new RowFilter() {
            public boolean include(Entry entry) {

                /* HERE I AM RECEIVING ERROR: Multiple markers at this line
                - Type mismatch: cannot convert from  Object to int
                - Cannot cast from Object to int */
                int ei = (int) entry.getIdentifier();

                return (target * itemsPerPage <= ei && ei < target
                        * itemsPerPage + itemsPerPage);
            }
        };
    }
4

2 に答える 2

6

あなたが望むものは:

int ei = ((Integer) entry.getIdentifier()).intValue();
于 2012-05-25T05:11:15.577 に答える
0

あなたのメソッドはIntegerここでオブジェクトを返していると思います。その場合は、次のようにする必要があります。

int ei =  ((Integer)entry.getIdentifier()).intValue();
于 2012-05-25T05:12:01.537 に答える