Oreilly - Understanding Java 8 Generics
by Ken Kousen | Released December 2016 | ISBN: 9781491978146
Java 5 introduced generics capabilities to the language, and for most developers, simply knowing that collections were typed was enough to get them through the day. However, one look at the standard library in Java 8 tells you those days are over. To be an effective Java developer now, you must understand the details of generics and how they are used in Java 8. Designed for the intermediate level Java user, this video explores how generic classes and methods are defined, how they enforce bounded types through wildcards, and how you can use them in your own code.Learn to use Java effectively, given the increased visibility of generics in Java 8Discover what most Java developers get wrong about generics and inheritanceUnderstand how Java uses generics in type and method definitionsExplore how upper and lower bounded wildcards are interpretedDiscover how to interpret complex method signatures with wildcardsLearn to diagnose heap pollution warnings and use @SafeVarargs annotationGain experience using complex examples from the Java 8 standard libraryKen Kousen is the author of the books Gradle Recipes for Android (O'Reilly) and Making Java Groovy (Manning), as well as O'Reilly video courses on Android, Groovy, Gradle, Advanced Java, and Spring. He is a regular speaker on the No Fluff, Just Stuff conference tour and a 2013 JavaOne Rock Star, and has spoken at conferences all over the world. Through his company, Kousen IT, Inc., he teaches software development training courses to thousands of students. Show and hide more Publisher resources View/Submit Errata
- Part 1: Introduction
- Welcome to the Course and Generics Prior to Java 8 00:04:40
- Part 2: Basics of Generics
- Basics 00:12:57
- Generics and Inheritance 00:06:57
- Part 3: Wildcards and PECS
- Unbounded Wildcards in Java 8 00:06:54
- Upper Bounds in Java 8 00:06:40
- Lower Bounds and PECS in Java 8 00:11:18
- Part 4: Examples from the Java 8 API
- Stream.max in the Java 8 API 00:12:31
- Comparator.comparing in the Java 8 API 00:14:59
- Stream.map in the Java 8 API 00:06:18
- Collectors.toMap in the Java 8 API 00:12:31
- Map.Entry.comparingByKey and comparingByValue in the Java 8 API 00:11:26
- Part 5: Type erasure
- Basic Type erasure 00:10:21
- Heap Pollution and @SafeVarargs 00:12:23
- Part 6: Summary
- Multiple Bounds and Conclusions 00:04:33
Show and hide more