https://github.com/annimon-tutorials/java-generics-tutorial
Source code for tutorial
https://github.com/annimon-tutorials/java-generics-tutorial
generics java tutorial
Last synced: about 1 year ago
JSON representation
Source code for tutorial
- Host: GitHub
- URL: https://github.com/annimon-tutorials/java-generics-tutorial
- Owner: annimon-tutorials
- License: mit
- Created: 2017-03-30T15:04:36.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-30T15:05:40.000Z (about 9 years ago)
- Last Synced: 2025-01-24T15:16:06.730Z (about 1 year ago)
- Topics: generics, java, tutorial
- Language: Java
- Homepage: https://annimon.com/article/2637
- Size: 73.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Java Generics Tutotial
### step 1
Problems with raw types.
### step 2
Using generic types.
### step 3
Garage and Vehicles. Raw types.
### step 4
First try to generify Garage. Jupiter in my garage.
### step 5
Generics upper bound.
### step 6
`TripleGarage`
### step 7
Trying to use generics array.
### step 8
Generics in lists. Wildcards. PECS.
### step 9
Unknown type wildcard `>`.