File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ At the beginning, it was the repository with questions from Java interviews. Cur
66
66
- [ How to filter list of objects using Stream API without .filter()?] ( core.md#howto-filter-list-of-objects-using-stream-without-filter )
67
67
- [ What is String Pool? How do Strings get there?] ( core.md#what-is-string-pool-how-do-strings-get-there )
68
68
- [ What is the difference between StringBuilder and StringBuffer?] ( core.md#what-is-the-difference-between-stringbuilder-and-stringbuffer )
69
+ - [ Difference between <? super T> and <? extends T> ?] ( core.md#difference-between--super-t-and--extends-t- )
69
70
70
71
## Collections
71
72
- [ What is the complexity for get in Hashmap?] ( collections.md#what-is-the-complexity-for-get-in-hashmap )
Original file line number Diff line number Diff line change 41
41
- [ How to filter list of objects using Stream API without .filter()?] ( #howto-filter-list-of-objects-using-stream-without-filter )
42
42
- [ What is String Pool? How do Strings get there?] ( #what-is-string-pool-how-do-strings-get-there )
43
43
- [ What is the difference between StringBuilder and StringBuffer?] ( #what-is-the-difference-between-stringbuilder-and-stringbuffer )
44
+ - [ Difference between <? super T> and <? extends T> ?] ( #difference-between-superT-and-extendsT )
44
45
45
46
## What's new in Java 8?
46
47
+ Lambda expressions, Method Reference , Optional, Streams added.
@@ -300,4 +301,9 @@ String pool is the special memory region where Strings are stored by the JVM.
300
301
## What is the difference between StringBuilder and StringBuffer?
301
302
All public methods of StringBuffer are synchronized, it provides Thread safety but on a performance cost.
302
303
304
+
305
+ ## Difference between <? super T> and <? extends T> ?
306
+ ###### Relative links:
307
+ - https://stackoverflow.com/questions/4343202/difference-between-super-t-and-extends-t-in-java
308
+
303
309
[ Home Page] ( README.md )
You can’t perform that action at this time.
0 commit comments