You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix about & introduction in International Calling Connoisseur (#2917)
- Remove redundant "studentScores", which seems to be there by mistake.
- Fix broken links to keySet and values methods.
- Fix references to keySet (should be keySet, not keys).
- Fix spacing for alignment in examples.
---------
Co-authored-by: Kah Goh <[email protected]>
Co-authored-by: jagdish-15 <[email protected]>
Use [containsKey][map-containskey-javadoc] to see if the map contains a particular key.
52
52
53
53
```java
54
-
fruitPrices.containsKey("apple"); // => true
54
+
fruitPrices.containsKey("apple"); // => true
55
55
fruitPrices.containsKey("orange"); // => false
56
56
```
57
57
58
58
Remove entries with [remove][map-remove-javadoc].
59
59
60
60
```java
61
-
fruitPrices.put("plum", 90); // Add plum to map
62
-
fruitPrices.remove("plum"); // Removes plum from map
61
+
fruitPrices.put("plum", 90); // Add plum to map
62
+
fruitPrices.remove("plum"); // Removes plum from map
63
63
```
64
64
65
65
The [size][map-size-javadoc] method returns the number of entries.
@@ -68,10 +68,10 @@ The [size][map-size-javadoc] method returns the number of entries.
68
68
fruitPrices.size(); // Returns 2
69
69
```
70
70
71
-
You can use the [keys] or [values] methods to obtain the keys or the values in a Map as a Set or collection respectively.
71
+
You can use the [keySet][map-keyset-javadoc] or [values][map-values-javadoc] methods to obtain the keys or the values in a Map as a Set or collection respectively.
72
72
73
73
```java
74
-
fruitPrices.keys();// Returns "apple" and "pear" in a set
74
+
fruitPrices.keySet(); // Returns "apple" and "pear" in a set
75
75
fruitPrices.values(); // Returns 100 and 80, in a Collection
76
76
```
77
77
@@ -169,3 +169,5 @@ Calling methods like `put`, `remove` or `clear` results in an `UnsupportedOperat
Use [containsKey][map-containskey-javadoc] to see if the map contains a particular key.
38
38
39
39
```java
40
-
fruitPrices.containsKey("apple"); // => true
40
+
fruitPrices.containsKey("apple"); // => true
41
41
fruitPrices.containsKey("orange"); // => false
42
42
```
43
43
44
44
Remove entries with [remove][map-remove-javadoc].
45
45
46
46
```java
47
-
fruitPrices.put("plum", 90); // Add plum to map
48
-
fruitPrices.remove("plum"); // Removes plum from map
47
+
fruitPrices.put("plum", 90); // Add plum to map
48
+
fruitPrices.remove("plum"); // Removes plum from map
49
49
```
50
50
51
51
The [size][map-size-javadoc] method returns the number of entries.
@@ -54,10 +54,10 @@ The [size][map-size-javadoc] method returns the number of entries.
54
54
fruitPrices.size(); // Returns 2
55
55
```
56
56
57
-
You can use the [keys] or [values] methods to obtain the keys or the values in a Map as a Set or collection respectively.studentScores
57
+
You can use the [keySet][map-keyset-javadoc] or [values][map-values-javadoc] methods to obtain the keys or the values in a Map as a Set or collection respectively.
58
58
59
59
```java
60
-
fruitPrices.keys();// Returns "apple" and "pear" in a set
60
+
fruitPrices.keySet(); // Returns "apple" and "pear" in a set
61
61
fruitPrices.values(); // Returns 100 and 80, in a Collection
62
62
```
63
63
@@ -68,3 +68,5 @@ fruitPrices.values(); // Returns 100 and 80, in a Collection
Use [containsKey][map-containskey-javadoc] to see if the map contains a particular key.
40
40
41
41
```java
42
-
fruitPrices.containsKey("apple"); // => true
43
-
fruitPrices.containsKey("orange"); // => false
42
+
fruitPrices.containsKey("apple"); // => true
43
+
fruitPrices.containsKey("orange"); // => false
44
44
```
45
45
46
46
Remove entries with [remove][map-remove-javadoc].
47
47
48
48
```java
49
-
fruitPrices.put("plum", 90); // Add plum to map
50
-
fruitPrices.remove("plum"); // Removes plum from map
49
+
fruitPrices.put("plum", 90); // Add plum to map
50
+
fruitPrices.remove("plum"); // Removes plum from map
51
51
```
52
52
53
53
The [size][map-size-javadoc] method returns the number of entries.
@@ -56,10 +56,10 @@ The [size][map-size-javadoc] method returns the number of entries.
56
56
fruitPrices.size(); // Returns 2
57
57
```
58
58
59
-
You can use the [keys] or [values] methods to obtain the keys or the values in a Map as a Set or collection respectively.studentScores
59
+
You can use the [keySet][map-keyset-javadoc] or [values][map-values-javadoc] methods to obtain the keys or the values in a Map as a Set or collection respectively.
60
60
61
61
```java
62
-
fruitPrices.keys();// Returns "apple" and "pear" in a set
62
+
fruitPrices.keySet(); // Returns "apple" and "pear" in a set
63
63
fruitPrices.values(); // Returns 100 and 80, in a Collection
64
64
```
65
65
@@ -70,3 +70,5 @@ fruitPrices.values(); // Returns 100 and 80, in a Collection
0 commit comments