The Equals method in the object class in Java complements

Source: Internet
Author: User

equals method in the object class: Regardless of the new number of objects, when using the"= ="to judge the memory address. If you need to make judgments between objects, you need to override the Equals method: Public BooleanEquals (Object obj)//obj is an incoming formal parameter (object)    {        if(obj = =NULL)//determines whether an object is empty        {            return false;//NULL returns False        }        Else        {            if(objinstanceofCat//determines whether this incoming parameter (object) is created by a cluster of cat{Cat C= (cat) obj;//cast this Obj object to cat type                if(C.A = = This. A && C.B = = This. B//determine if the member variable in the C object is the same as the member variable in the Cat class                {                    return true;//Yes True                }                Else                {                    return false;//otherwise flase                }            }            Else            {                return false;//not created from Cat returns Flase            }        }            }

The Equals method in the object class in Java complements

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.