Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8939153
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T10:46:05+00:00 2026-06-15T10:46:05+00:00

I have a LinkedList of objects im trying to iterate over(using an iterator), see

  • 0

I have a LinkedList of objects im trying to iterate over(using an iterator), see if they have any collision, if so, remove it from the list. However, I am getting a concurrent modification exception. I put it in a synchronized block, and I also tried catching the error in a try catch block, neither seem to help at all, the code is here:

private void updateTP() {
    synchronized (toiletpaper) {
        Iterator<ToiletPaper> iter = toiletpaper.iterator();
        while (iter.hasNext()) {
            ToiletPaper tp = iter.next();
            tp.update(1000, 700);
            if (toilet.overlaps(tp)) {
                System.out.println("tp splash!");
                toiletpaper.remove(tp);
                menu.removeLife();
            }
        }
    }
}

Any thoughts on the problem would be appreciated, I looked through here and google, and all of them said either catch the exception or synchronize it, which neither seem to work so… please help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T10:46:06+00:00Added an answer on June 15, 2026 at 10:46 am

    To avoid the exception, use iter.remove() instead. This will remove the element via the iterator instance, rather than the current call, which searches and removes from the list separately – that is, a concurrent modification.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using a Comparator and Iterator, I am trying to add objects into a linked
I have a Linkedlist of objects (can be changed to any other Collection type
I have LinkedList of objects and an iterator. I know that this ConcurrentModificationException is
I have two LinkedList objects that are always of the same size. I want
If I have an LinkedList of Employee objects... Each employee has a Name, and
I have a LinkedList that contains many objects. How can I find the number
If I have a collection of objects: public class Party { LinkedList<Guy> partyList =
I have a LinkedList as /** * The list of data to display. */
I have a vector of Linked list pointers. Each LinkedList has a head pointer
So i am trying to compile my LinkedList for a program that i have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.