Java idsIterator.remove()引发IllegalStateException

Java idsIterator.remove()引发IllegalStateException,java,illegalstateexception,listiterator,Java,Illegalstateexception,Listiterator,我正在尝试使用listIterator的remove方法。但是,我得到了一个非法状态异常 这是我的密码: private List<Category> findDescendantsOfCurrentCategory() { List<Category> categoryList = new ArrayList<>(mCategoryList); List<Category> descendantCategories = new

我正在尝试使用listIterator的
remove
方法。但是,我得到了一个
非法状态异常

这是我的密码:

private List<Category> findDescendantsOfCurrentCategory() {
    List<Category> categoryList = new ArrayList<>(mCategoryList);

    List<Category> descendantCategories = new ArrayList<>();

    Stack<String> categoriesIds = new Stack<>();
    categoriesIds.push(mCategoryId);

    ListIterator<Category> categoryListIterator = categoryList.listIterator();

    ListIterator<String> idsIterator = categoriesIds.listIterator();

    while (idsIterator.hasNext()) {
        String parentId = idsIterator.next();

        while (categoryListIterator.hasNext()) {
            Category category = categoryListIterator.next();

            if (category.getParentId().equals(parentId)) {
                idsIterator.add(category.getId());

                descendantCategories.add(category);
            }

            categoryListIterator.remove();
        }

        idsIterator.remove();
    }

    return descendantCategories;
}
ListIterator上的文档()提到了remove方法:“只有在上次调用next或previous之后没有调用add(E)时,才能执行此操作。”


因此,在调用remove之前,您基本上必须重写代码,不使用add函数

IlligaleStateException怎么说?@DZDomi nothing.发布stacktrace@Kayaman posted…@DZDomi查看stacktrace
03-09 23:11:33.160 25298-25298/com.example.clients.someoneplatform.dev E/AndroidRuntime: FATAL EXCEPTION: main
              Process: com.example.clients.someoneplatform.dev, PID: 25298
              java.lang.IllegalStateException
        at java.util.AbstractList$SimpleListIterator.remove(AbstractList.java:67)
        at com.example.clients.someoneplatform.ui.categories.list.ListCategoriesFragment.findDescendantsOfCurrentCategory(ListCategoriesFragment.java:186)
        at com.example.clients.someoneplatform.ui.categories.list.ListCategoriesFragment.startAddEditCategoryForModification(ListCategoriesFragment.java:154)
        at com.example.clients.someoneplatform.ui.categories.list.ListCategoriesFragment.access$200(ListCategoriesFragment.java:39)
        at com.example.clients.someoneplatform.ui.categories.list.ListCategoriesFragment$1.onCategoryModifyButtonClicked(ListCategoriesFragment.java:124)
        at com.example.clients.someoneplatform.ui.categories.list.ListCategoriesAdapter$ViewHolder.onModifyButtonClicked(ListCategoriesAdapter.java:134)
        at com.example.clients.someoneplatform.ui.categories.list.ListCategoriesAdapter$ViewHolder_ViewBinding$2.doClick(ListCategoriesAdapter$ViewHolder_ViewBinding.java:47)
        at butterknife.internal.DebouncingOnClickListener.onClick(DebouncingOnClickListener.java:22)
        at android.view.View.performClick(View.java:5201)
        at android.view.View$PerformClick.run(View.java:21209)
        at android.os.Handler.handleCallback(Handler.java:739)
        at android.os.Handler.dispatchMessage(Handler.java:95)
        at android.os.Looper.loop(Looper.java:148)
        at android.app.ActivityThread.main(ActivityThread.java:5525)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:730)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:620)