Java equals for a Class. Is == same as .equals

后端 未结 3 695
醉话见心
醉话见心 2021-02-01 11:51

Can we do a == on a Class variable instead of equals and expect the same result?

For example:

Class clazz = xyz;
<         


        
3条回答
  •  佛祖请我去吃肉
    2021-02-01 12:35

    Class is final, so its equals() cannot be overridden. Its equals() method is inherited from Object which reads

    public boolean equals(Object obj) {
        return (this == obj);
    }
    

    So yes, they are the same thing for a Class, or any type which doesn't override equals(Object)

    To answer your second question, each ClassLoader can only load a class once and will always give you the same Class for a given fully qualified name.

提交回复
热议问题