this post was submitted on 28 Apr 2024
489 points (96.9% liked)

Science Memes

12399 readers
2480 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.

This is a science community. We use the Dawkins definition of meme.



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
[–] SpaceNoodle 119 points 10 months ago (24 children)

It's a dynamically-sized list of objects of the same type stored contiguously in memory.

[–] conquer4 1 points 10 months ago (1 children)
[–] [email protected] 10 points 10 months ago* (last edited 10 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 10 months ago (1 children)

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

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

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

[–] [email protected] 1 points 10 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 10 months ago

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

load more comments (22 replies)