Update for 30-03-22 11:45

This commit is contained in:
Tyler Perkins 2022-03-30 11:45:01 -04:00
parent 459671ead1
commit b42713a3fb
2 changed files with 16 additions and 0 deletions

View File

@ -44,6 +44,7 @@ _Ideas.md and Classes.md are encrypted, so these links will not work_
* [[tech/HTML|HTML]]
* [[tech/CSS|CSS]]
* [[tech/Javascript|Javascript]]
* [[tech/Java|Java]]
* [[tech/Solidity|Solidity]]
* [[tech/PHP|PHP]]
* [[tech/Rust|Rust]]

15
tech/Java.wiki Normal file
View File

@ -0,0 +1,15 @@
= 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 |
|