this post was submitted on 28 Apr 2024
498 points (97.0% liked)

Science Memes

10356 readers
2809 users here now

Welcome to c/science_memes @ Mander.xyz!

A place for majestic STEMLORD peacocking, as well as memes about the realities of working in a lab.



Rules

  1. Don't throw mud. Behave like an intellectual and remember the human.
  2. Keep it rooted (on topic).
  3. No spam.
  4. Infographics welcome, get schooled.


Research Committee

Other Mander Communities

Science and Research

Biology and Life Sciences

Physical Sciences

Humanities and Social Sciences

Practical and Applied Sciences

Memes

Miscellaneous

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 11 points 4 months ago* (last edited 4 months ago) (1 children)

No. ArrayList is thread safe and implements the collections API. Vector doesn't. Though if you're using Java, there's almost no instance where you would want to use a Vector instead of ArrayList.

[–] [email protected] 1 points 4 months ago (1 children)

ArrayList isn't thread-safe, though...

[–] [email protected] 1 points 4 months ago (1 children)

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

[–] [email protected] 1 points 4 months ago (1 children)

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.

[–] [email protected] 1 points 4 months ago

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