Java 7 对象类
有一个公共最终类对象
在 Java 7 中扩展了 java.lang.Object
基类。
默认情况下这是基类吗?还是我们需要调用“Objects”类上的方法并调用相应的方法?
There is a public final class Objects
in Java 7 that extendes the java.lang.Object
base class.
Will this by default be the base class like or do we need to call the method on "Objects" class and call the corresponding methods?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,什么都没有改变。
对象
类只是一个实用程序类。它只有静态方法,位于util
包中,并且执行 commons-lang 中的ObjectUtils
正在执行的操作。No. Nothing changes. The
Objects
class is simply an utility class. It has only static methods, it's in theutil
package, and does whatObjectUtils
from commons-lang is doing.对象是最终的,它扩展了对象,为您提供空安全实用程序。
Objects is final and it extends Object giving you null safe utilities.