Java.lang.Void Class in Java Last Updated : 13 Sep, 2023 Comments Improve Suggest changes 3 Likes Like Report Java.lang.Void class is a placeholder that holds a reference to a class object if it represents a void keyword. It is an uninstantiable placeholder. Well, uninstantiable means that this class has a private constructor and no other constructor that we can access from outside. Methods of lang.void class is all inherited from Object class in Java: getClass(): Returns the runtime class of the argument Object.hashCode(): Returns a hash code value for the object.equals(): Checks whether the two objects are equal or not.clone(): Returns a copy of the object.toString(): Returns string representation of the object.notify(): Wakes up a single thread that is waiting on this object's monitor.notifyAll(): Wakes up all threads that is waiting on this object's monitor.wait(): Makes current thread to wait until previous thread invokes either notify() or notifyAll() methods.finalize(): Called By the garbage collector on an object when garbage collection determines that there are no more references to the object. Reference: Java Oracle docs Create Quiz Comment M Mohit Gupta 3 Improve M Mohit Gupta 3 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