| Author |
importance of formal type parameters?
|
Roshan Rai
Greenhorn
Joined: Aug 16, 2012
Posts: 15
|
|
what is the importance of formal type parameters..??
why are they used..??
please help...
thanks in advance..
|
 |
Ankit Dan
Ranch Hand
Joined: Aug 31, 2012
Posts: 47
|
|
Suppose you have a non-generic method
now this is too general in the sense that it does not express any relationship between k and array this kind of dependency can be achieved using formal type parameter
so now when a generic method is called you can specify the E as you wish like Integer and hence k and array will be of type Integer, for example
this means the call signature is : iAmGeneric(Integer, Integer[])
i hope you got it
Ankit
|
 |
 |
|
|
subject: importance of formal type parameters?
|
|
|