Java Generics and Collections

Java Generics and Collections
ISBN-10
0596527756
ISBN-13
9780596527754
Category
Computers
Pages
273
Language
English
Published
2007
Publisher
"O'Reilly Media, Inc."
Authors
Philip Wadler, Maurice Naftalin

Description

This book, written by one of the designers of generics, is a thorough explanation of how to use generics, and particularly, the effect this facility has on the way developers use collections.

Other editions

Similar books

  • Java Generics and Collections: Fundamentals and Recommended Practices
    By Philip Wadler, Maurice Naftalin

    This indispensable guide covers: Fundamentals of generics: type parameters and generic methods Subtyping and wildcards Generics and reflection Design patterns for generics Sets, queues, lists, maps, and their implementations Concurrent ...

  • Learning Java
    By Jonathan Knudsen, Patrick Niemeyer

    A tutorial introducing Java basics covers programming principles, integrating applets with Web applications, and using threads, arrays, and sockets.

  • Java Collections
    By John Zukowski

    The Collections Framework is supplied with all versions of the Java 2 platform and provides programmers with incredibly efficient ways to manipulate data.

  • Effective Java
    By Joshua Bloch

    Each chapter in the book consists of several “items” presented in the form of a short, standalone essay that provides specific advice, insight into Java platform subtleties, and outstanding code examples.

  • Data Structures and the Java Collections Framework
    By William Joseph Collins

    This student-friendly book is designed for a course in data structures where the implementation language is Java. The focus is on teaching students how to apply the concepts presented, therefore...

  • Java in a Nutshell
    By David Flanagan

    Java in a Nutshell, Deluxe Edition, brings together on CD-ROM five volumes for Java developers and programmers, linking related info across books.

  • Learning Java: A Bestselling Hands-On Java Tutorial
    By Patrick Niemeyer, Daniel Leuck

    If you’re new to Java, the fourth edition of this bestselling guide provides an example-driven introduction to the latest language features and APIs in Java 6 and 7.

  • Professional .NET 2.0 Generics
    By Tod Golding

    Explores various aspects of the .NET generics implementation. This book covers various things from fundamental generic concepts, to the elements of generic syntax.

  • Java Collections: An Introduction to Abstract Data Types, Data Structures and Algorithms
    By David A. Watt, Deryck F. Brown

    Paying close attention to the Java 2 collection classes, this book is designed to give programmers the ability to choose the best collection classes for each application. The focus of...

  • Beginning Java 8 Language Features: Lambda Expressions, Inner Classes, Threads, I/O, Collections, and Streams
    By Kishori Sharan

    Wrapper sw = (Wrapper)nW; // #2 short s = sw.get(); //#3 ClassCastException The statement labeled #2 uses an unchecked cast. The compiler issues an unchecked warning. At runtime, it leads to heap pollution.