vimwiki/tech/Java.wiki

16 lines
405 B
Plaintext

= Java =
Java is a strongly typed, garbage collected language that runs in the JVM. It
can run on almost anything.
== Data structures ==
| C++ DS | Java DS | Notes |
| Vector | ArrayList | Threadsafe |
| Vector | Vector | Not threadsafe; deprecated |
| Deque | Deque | |
| List | ArrayList | Both linked lists |
|