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 回答