mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-26 23:23:55 +00:00
Compare commits
3 Commits
bb89a3c948
...
8b700dbe89
Author | SHA1 | Date | |
---|---|---|---|
![]() |
8b700dbe89 | ||
![]() |
7f0f27d84d | ||
![]() |
cd085e5da1 |
@ -129,8 +129,9 @@ public class LearnJavaDe {
|
||||
// Maps - Eine Sammlung von Objekten, welche eine Verknüpfung von Schlüsseln zu Werten (key => value) vornimmt.
|
||||
// Eine Map kann keine Duplikate enthalten; Jeder Schlüssel kann genau einen Wert beinhalten.
|
||||
// HashMaps - Diese Klasse nutzt eine Hashtabelle zur Implementierung eines Map Interfaces.
|
||||
// Dies erlaubt es zur Laufzeit Standardoperationen wie gib (get) und einfügen (insert)
|
||||
// selbst für große Mengen in einer konstanten Zeit auszuführen (Laufzeitverhalten O(n)).
|
||||
// Dies erlaubt es zur Laufzeit Standardoperationen wie gib (get) und einfügen (insert).
|
||||
// Dies dauert im Mittel nur "konstante" Zeit, auch genannt O(1). Für Details siehe
|
||||
// https://de.wikipedia.org/wiki/Landau-Symbole und https://de.wikipedia.org/wiki/Hashtabelle
|
||||
|
||||
///////////////////////////////////////
|
||||
// Operatoren
|
||||
|
3
yaml.md
3
yaml.md
@ -177,7 +177,8 @@ bar:
|
||||
<<: *base # base anchor will be merged
|
||||
age: 20
|
||||
|
||||
# foo name won't be changed and it will be: John. On the other hand, bar's name will be changed to the base one: Everyone has same name
|
||||
# foo name won't be changed and it will be: John. On the other hand,
|
||||
# bar's name will be changed to the base one: Everyone has same name
|
||||
|
||||
# YAML also has tags, which you can use to explicitly declare types.
|
||||
# Syntax: !![typeName] [value]
|
||||
|
Loading…
Reference in New Issue
Block a user