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 299745
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T06:51:03+00:00 2026-05-12T06:51:03+00:00

While updating for loops to for-each loops in our application, I came across a

  • 0

While updating for loops to for-each loops in our application, I came across a lot of these “patterns”:

for (int i = 0, n = a.length; i < n; i++) {
    ...
}

instead of

for (int i = 0; i < a.length; i++) {
    ...
}

I can see that you gain performance for collections because you don’t need to call the size() method with each loop. But with arrays??

So the question arose: is array.length more expensive than a regular variable?

  • 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-12T06:51:03+00:00Added an answer on May 12, 2026 at 6:51 am

    No, a call to array.length is O(1) or constant time operation.

    Since the .length is(acts like) a public final member of array, it is no slower to access than a local variable. (It is very different from a call to a method like size())

    A modern JIT compiler is likely to optimize the call to .length right out anyway.

    You can confirm this by either looking at the source code of the JIT compiler in OpenJDK, or by getting the JVM to dump out the JIT compiled native code and examining the code.

    Note that there may be cases where the JIT compiler can’t do this; e.g.

    1. if you are debugging the enclosing method, or
    2. if the loop body has enough local variables to force register spilling.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I came across a terrible error while updating my android ADT plugin in Eclipse
Am updating my sql table using while loops , In my table records id
While updating a big json list, I'm getting the following error : 2012-04-01T09:34:00+00:00 app[run.1]:
I have encountered a weird situation while updating/upgrading some legacy code. I have a
Just installed the SDK and ADK. while updating, it gives the following error: unexpected
try: html = urlopen('http://glbse.com/api/asset/' + asset.name) except: print 'error while updating the price of
hi i am updating the keyIndex array, which is created in object, while i
While developing an application using gwt in ecliplse crashed. Now the server is running
I'll try create a controler in towerjs, but I have an error while updating
I've got two arrays which are updating themselves and each other based on criteria

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.