Java IO – 1 [ Overview ]
An input/output in Java consists of exchanging data between the program and another source which can be :...
Reflection – 3
Reflection in Java is a powerful feature that allows a program to examine or introspect its own structure...
Reflection – 2
Reflection in Java is a powerful feature that allows a program to examine or introspect its own structure...
Reflection – 1
Reflection in Java is a powerful feature that allows a program to examine or introspect its own structure...
Generics – 3
JDK 5 introduced Java Generics with the aim of reducing bugs and adding an extra layer of abstraction...
Generics – 2
JDK 5 introduced Java Generics with the aim of reducing bugs and adding an extra layer of abstraction...
Generics – 1
JDK 5 introduced Java Generics with the aim of reducing bugs and adding an extra layer of abstraction...
Annotation
Annotations are a feature introduced in JDK 1.5 and are used to explain the code. They can annotate...
Exception – 3
Exceptions refer to various unexpected situations, such as: file cannot be found, network connection failure, illegal parameters, etc....