Rabecca Fatima

Remote Method Invocation(RMI) in Java

Remote Method Invocation (RMI) is an API that allows an object to call a method on another object in another…

3 years ago

Java.lang.Class class in Java

Java includes a class called Class in the java.lang package. In a running Java application, instances of the class Class…

3 years ago

Reflection in Java

Reflection is a runtime API for inspecting and modifying the behavior of methods, classes, and interfaces. The classes required for…

3 years ago

Character class in Java

In java.lang package, Java includes a wrapper class called Character. A single field of type char is contained in a…

3 years ago

Boolean class in Java

In java.lang package, there is a wrapper class Boolean. A value of the primitive type boolean is wrapped in an…

3 years ago

Double class in Java

The Double class is a wrapper class for the primitive type double. It contains several methods for dealing with double…

3 years ago

Float class in Java

The Float class is a wrapper class for the primitive type float. It contains several methods for dealing with float…

3 years ago

Short class in Java

The Short class is a wrapper class for the primitive type short. It contains several methods for dealing with short…

3 years ago

Byte Class in Java

The Byte class creates an object out of a primitive type byte value. An object of type Byte has a…

3 years ago

Wrapper Class in Java

A Wrapper class is one whose object contains or wraps primitive data types. When we create an object for a…

3 years ago