Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7627065
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T05:24:36+00:00 2026-05-31T05:24:36+00:00

Which of these is more efficient? : ArrayList<Integer> list = new ArrayList<Integer>(); for(int a

  • 0

Which of these is more efficient? :

ArrayList<Integer> list = new ArrayList<Integer>();
for(int a : list){
   log.i(tag, a + "");
}

SparseIntArray list2 = new SparseIntArray();
int count = list2.size();
for(int j = 0; j < count; j++) {
   log.i(tag, list2.get(j) + "");
}

Or, is there a faster way to read the contents of the list?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T05:24:36+00:00Added an answer on May 31, 2026 at 5:24 am

    Efficiency, in this case, is irrelevant, since those two do completely different things.

    I think you realize that your ArrayList example iterates through all the elements of the array-list.

    What you don’t realize is that your SparseIntArray example does not iterate through all the elements of the sparse-integer-array, because the keys of a sparse-integer-array do not range from zero to array-size-minus-one. Rather, its keys are arbitrary integers. A sparse-integer-array has as much in common, interface-wise, with HashMap<Integer, Integer> as with ArrayList<Integer>.

    (This, by the way, relates to a general rule of software design: it is better for your code to be correct than efficient. You can always take correct, clean code and find ways to improve its performance; but it’s very hard to take fast, buggy code and find ways to make it correct.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Which one of these two is more 'efficient': for (int i = 0; i
My real Question is which of these is more efficient in terms of loading
Which of these queries is more efficient, and would a modern DBMS (like SQL
I wanted to know which one of these would be more time-efficient when implementing
Which of these two different models would be more efficient (consider thrashing, utilization of
Which of these is more efficient in terms of speed (number of lines of
I pretty much don't know anything about these two. Which one is better/more efficient
I'm wondering which is more efficient. std::map< String, std::set<int> > or std::multimap< String, int
Which of these is more efficient in ColdFusion? isDefined('url.myvar') or structKeyExists(url, 'myvar')
Is there any time in which a reference type is more efficient than a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.