The Performance Comparison of Different traversal methods of ArrayList is actually not much worse. The performance comparison of arraylist

Source: Internet
Author: User

The Performance Comparison of Different traversal methods of ArrayList is actually not much worse. The performance comparison of arraylist

// RadomAcess interface .. I traversal ratio .. fast loop, @ more see comments for interface RandomAcess import java. util. arrayList; import java. util. iterator; import java. util. list; public class ListPerformanceTest {public static void main (String [] args) {List <String> list = new ArrayList <> (); for (int I = 0; I <Integer. MAX_VALUE/200; I ++) {list. add ("1");} long d1 = System. currentTimeMillis ();/******************* fas Test ********************** // for (int I = 0, n = list. size (); I <n; I ++) {// list. get (I ); ///}/**************** second fastest due to each loop wocould get the list size ******** * *************** // for (int I = 0; I <list. size (); I ++) {// list. get (I ); ///}/***************** not know why this is faster than the last ********** * ************* // for (Iterator <?> It = list. iterator (); it. hasNext ();) {// it. next (); //} // for (String s: list) {// if (s! = Null) {// continue; //} System. out. println ("Times (MS):" + (System. currentTimeMillis ()-d1 ));}}

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.