| Author |
generics
|
meeta gaur
Ranch Hand
Joined: Dec 05, 2012
Posts: 226
|
|
Hi,
I couldn't figure out difference between type parameter and parametrized type.
thanks
|
OCAJP
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32827
|
|
|
Have you tried the Java Tutorials? Try the second section about types.
|
 |
J. Kevin Robbins
Ranch Hand
Joined: Dec 16, 2010
Posts: 394
|
|
|
The definitive document on generics can be found here. It's not an easy read, but well worth the effort.
|
"There is no reason for any individual to have a computer in his home" ~ Ken Olson, Co-founder of DEC, 1977
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12950
|
|
A parameterized type is a type that has a type parameter.
Look, for example, at List<T> - List is the parameterized type, and T is its type parameter.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
bit developer
Greenhorn
Joined: Feb 03, 2013
Posts: 2
|
|
Visit this link to know more about typed collections.
http://www.questionscompiled.com/answer.jsp?technology=java&qid=63
|
 |
 |
|
|
subject: generics
|
|
|