We all love the mechanism of python, where we don’t have to bother about the data types of the variables. Interestingly we have one class in Java too, which is pretty similar! It’s java.lang.Object.
Example:
Java
import java.util.*;
public class GFG {
public static void main(String arr[])
{
Object y;
y = 'A' ;
System.out.println(y.getClass().getName());
y = 1 ;
System.out.println(y.getClass().getName());
y = "Hi" ;
System.out.println(y.getClass().getName());
y = 1.222 ;
System.out.println(y.getClass().getName());
y = false ;
System.out.println(y.getClass().getName());
}
}
|
Output
java.lang.Character
java.lang.Integer
java.lang.String
java.lang.Double
java.lang.Boolean
Such behavior can be attributed to the fact that the Object class is a superclass to all other classes. Hence, a reference variable of type Object can be practically used to reference objects of any class. So, we could also assign y = new InputStreamReader(System.in) in the above code.
If you like GeeksforGeeks and would like to contribute, you can also write an article and mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!