From b42713a3fb760a74eaac1b2a480394c386311e0a Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Wed, 30 Mar 2022 11:45:01 -0400 Subject: [PATCH] Update for 30-03-22 11:45 --- index.wiki | 1 + tech/Java.wiki | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 tech/Java.wiki diff --git a/index.wiki b/index.wiki index faaf086..3d1112f 100644 --- a/index.wiki +++ b/index.wiki @@ -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]] diff --git a/tech/Java.wiki b/tech/Java.wiki new file mode 100644 index 0000000..0db4998 --- /dev/null +++ b/tech/Java.wiki @@ -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 | +| + +