Flexible nature of java.lang.Object Last Updated : 02 May, 2022 Comments Improve Suggest changes 12 Likes Like Report 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 // Java program to Demonstrate Flexible Nature of // java.lang.Object // Importing required classes import java.util.*; // Main class public class GFG { // Main driver method public static void main(String arr[]) { // Declaring a variable of Object class type Object y; y = 'A'; // Getting the class name // using getClass() and getname() method System.out.println(y.getClass().getName()); y = 1; // Getting the class name System.out.println(y.getClass().getName()); y = "Hi"; // Getting the class name System.out.println(y.getClass().getName()); y = 1.222; // Getting the class name System.out.println(y.getClass().getName()); y = false; // Getting the class name System.out.println(y.getClass().getName()); } } Outputjava.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. Create Quiz Comment K kartik 12 Improve K kartik 12 Improve Article Tags : Java Java-lang package Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings7 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java5 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages2 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java4 min readJava Comparator Interface5 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java7 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management3 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like