• unalivejoy
      link
      fedilink
      English
      12 months ago

      Thread safe as in it raises an exception instead of breaking your list.

      • @[email protected]
        link
        fedilink
        English
        12 months ago

        Only if one thread modifies it while another one is iterating over it, if two threads try to modify the list at once there isn’t any kind of synchronization and it really could break your list.

        • unalivejoy
          link
          fedilink
          English
          12 months ago

          For everything else, there’s Collections.synchronizedList(new ArrayList<>())