Experiment for finding specific elements from arraylist

Source: Internet
Author: User
Public class getspecifiedelementfromalist {

Public static void main (string [] ARGs ){
List <pojo> List = new arraylist <pojo> ();
Pojo A = new pojo ();
A. setkey ("AAA ");
A. setcontent ("aaa111111 ");
Pojo B = new pojo ();
B. setkey ("BBB ");
B. setcontent ("bbb222222 ");
List. Add ();
List. Add (B );
// So, we're going to find out where it is. I mean the element which key is 'bbb '.
// If you do it with the original object, everything seems OK.
Int idx = List. indexof (B );
System. Out. println (idx); // you can get a '1' here.
// But if you do it with a brand new object
// Containing the same value with the original one...
Pojo c = new pojo ();
// Like this...
C. setkey ("BBB ");
C. setcontent ("bbb222222 ");
Idx = List. indexof (C );
System. Out. println (idx); // you'll get nothing but '-1 '.
// Which means it is not supposed to be used like this at all.
}

}

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.