Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit da2384a

Browse files
committed
superT, extendsT
1 parent f6d1bfe commit da2384a

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ At the beginning, it was the repository with questions from Java interviews. Cur
6666
- [How to filter list of objects using Stream API without .filter()?](core.md#howto-filter-list-of-objects-using-stream-without-filter)
6767
- [What is String Pool? How do Strings get there?](core.md#what-is-string-pool-how-do-strings-get-there)
6868
- [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-)
6970

7071
## Collections
7172
- [What is the complexity for get in Hashmap?](collections.md#what-is-the-complexity-for-get-in-hashmap)

core.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
- [How to filter list of objects using Stream API without .filter()?](#howto-filter-list-of-objects-using-stream-without-filter)
4242
- [What is String Pool? How do Strings get there?](#what-is-string-pool-how-do-strings-get-there)
4343
- [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)
4445

4546
## What's new in Java 8?
4647
+ 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.
300301
## What is the difference between StringBuilder and StringBuffer?
301302
All public methods of StringBuffer are synchronized, it provides Thread safety but on a performance cost.
302303

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+
303309
[Home Page](README.md)

0 commit comments

Comments
 (0)