what is generics in jdk1.5?

Answers were Sorted based on User's Feedback



what is generics in jdk1.5?..

Answer / rohitjadhav

Hi,

Generics is Template support added in JDK1.5 where in we can maintain templates of object with particular type and also this object is restricted to accept type other than specified one at code time.
This help reducing runtime exception and also we can create predefined well formed templates of Type.

Best Example.

http://java.sun.com/j2se/1.5.0/docs/relnotes/features.html#generics

Code written to use the generics feature should not be a lot slower or a lot more memory-intensive than non-generic code. Using ten percent more space or time than ....

Is This Answer Correct ?    2 Yes 0 No

what is generics in jdk1.5?..

Answer / tarun

Please go through this link for more knowledge
http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf

Generics is the new feture added in the JAVA5.0. It feature
is useful in some broad applications when we are writing any
database insertion logic for the same type of Object.
suppose we have to insert a list of Employee Object this
will be declared as List<Employee> or suppose we have a list
of long values then we can simply type cast it as
List<Long>, Similarly List<String>, List<Integer>. The
generics class are used by Wrapper classes or any other
classes. Most useful in ORM technologies also.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Core Java Interview Questions

Why java is platform independent? Explain.

0 Answers  


what is the life cycle of jsp?

3 Answers   Photon,


What is a control variable example?

0 Answers  


What will happens if you opened Internet Explorer 4 times?

2 Answers  


What is the purpose of declaring a variable as final?

0 Answers  






what is Remote Reference Layer ?

1 Answers  


What is the static import?

0 Answers  


What are use cases?

0 Answers  


Can you extend main method in java?

0 Answers  


Explain about main() method in java ?

0 Answers  


How does synchronized modifier work?

1 Answers   IBM,


Why char array is favored over string for the storage of passwords?

0 Answers  


Categories