简体   繁体   中英

What is the difference between Object and Objects in java

What's the difference between them and how can I use Objects?

Objects                 |        Object
java.util               |        java.lang
Class Objects           |        Class Object

java.util.Objects       |        java.lang.Object

The javadoc can help:

java.lang.Object

Class Object is the root of the class hierarchy. Every class has Object as a superclass. All objects, including arrays, implement the methods of this class.

java.util.Objects

This class consists of static utility methods for operating on objects. These utilities include null-safe or null-tolerant methods for computing the hash code of an object, returning a string for an object, and comparing two objects.

Object is a implicit base class for all classes in java. Objects is a utility class introduced in java 7 that contains several very convenient static utility methods.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM