Skip to content

Commit c32aa06

Browse files
committed
updated
1 parent 93a56ca commit c32aa06

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

site/Explaination.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -452,12 +452,18 @@ All three methods can **only** be called from within a `synchronized` context.
452452
#### Thread Deadlock
453453
Situation where two or more threads are blocked forever, waiting for each other. Occurs when multiple threads need the same locks, but obtain them in a different order. Obviously, we want to **avoid this!**
454454

455+
<sup><sub>[▲ TOP](#table-of-contents)</sub></sup>
456+
455457
<sup><sub>[▲ TOP](#table-of-contents)</sub></sup>
456458
## Java Collections Framework
457459
### Overview
458460

459-
<img src="https://media.geeksforgeeks.org/wp-content/uploads/java-collection.jpg" alt="Java Collections Framework" class="responsive-img" />
460-
461+
<div style="text-align: center;">
462+
<img src="https://media.geeksforgeeks.org/wp-content/uploads/java-collection.jpg"
463+
alt="Java Collections Framework"
464+
class="responsive-img java-img"
465+
style="max-width: 600px; width: 100%; height: auto;" />
466+
</div>
461467

462468
### Maps
463469
There are four commonly used map implementations in Java: HashMap, TreeMap, LinkedHashMap, and Hashtable.

0 commit comments

Comments
 (0)