Java Learning note--hashmap using object as key "reprint"

Source: Internet
Author: User

In HashMap, if you need to use multiple attribute combinations as keys, you can combine the several attributes into one object as key. However, the problem is that, to do get, there is often no way to save the original put operation of the key object reference, at this time, you need to have key object cover the following hashcode() and equals( Object obj) is implemented. Sample code is as follows:

 Public classTestkeyobject {Private LongID; Private inttype;  PublicTestkeyobject (LongIdinttype) {         This. ID =ID;  This. Type =type; }     Public LonggetId () {returnID; }     Public voidSetId (LongID) { This. ID =ID; }     Public intGetType () {returntype; }     Public voidSetType (inttype) {         This. Type =type; }    //define how hashcode is calculated     Public inthashcode () {intRET =NewLong (ID). hashcode () ^NewInteger (type). Hashcode (); //you can also calculate hashcode in the following way//int ret = string.valueof (ID). hashcode () ^//string.valueof (type). Hashcode ();System.out.println (ret); returnret; }    //define conditions for equality     Public Booleanequals (Object obj) {if(NULL==obj) {            return false; }        if(! (objinstanceoftestkeyobject)) {            return false; } testkeyobject tmpobj=(testkeyobject) obj; returnTmpobj.id = = id && Tmpobj.type = =type; }}

Java Learning note--hashmap using object as key "reprint"

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.