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

  • Home
  • SEARCH
  • 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 7639289
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T08:22:52+00:00 2026-05-31T08:22:52+00:00

I have a block of uncommented code I’m trying to understand. The comments are

  • 0

I have a block of uncommented code I’m trying to understand. The comments are my own.

//create an array name header that holds 4 bytes
byte header[] = new byte[4];
int len = 0;
int c = -1;

for(; len != 3; len += c)// run loop till len = 3
{
  try
  {
    //first run of the loop following should be true
    //read 3 bytes and save into header array starting at 0
    // c = number of bytes read (most likely 3 after first run of loop)

    c = is.read(header, len, 3 - len);

  }
  catch(Exception e)
  {
     System.err.println("read header error " + e.getMessage());
     displayErrorMessage(e);
  }
  if(c == -1)
    return null;

}

This code is reading an input stream but I’m not sure how many times it will loop.
I tried running through the loop on paper, replacing len and c each time and after 7 iterations len still did not equal 3.

During second run of the loop, len should equal -1 and c should equal 3. The -1 should make the read method throw an IndexOutOfBoundsException because you are trying to save the byte read from the stream to header[-1]. So since an exception is thrown, the value of c would remain equal to 3 from first run of the loop.

Am I right in assuming that since the exception is caught, the for loop does not exit?

  • 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-31T08:22:53+00:00Added an answer on May 31, 2026 at 8:22 am

    The number of times the loop will be repeated is not deterministic, since read() might read 3 bytes at the first run, and terminate – or it might read 1 byte at a time, and repeat 3 times.

    However, as the comment says – it is very likely that read() will read during the first iteration 3 bytes and the loop will have only one iteration.

    For this case what happen is the following:

    1. check if len < 3 – it is
    2. read 3 bytes to the array, and set c = 3
    3. check if c == -1 – it is not
    4. end loop: set len = len + c = 3
    5. check if len < 3 – it is not: terminate the loop
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a block of code that works and I wanted to ask what
I have a block of JSP code that needs to be used in several
I have a block of code that basically intializes several classes, but they are
I have a block of code that is repeated within a DB2 stored procedure.
I have this block of code: users = Array.new users << User.find(:all, :conditions =>
We have a block of code that creates a list of sqlParameters and then
I have a block of preformatted code (<pre>) which overflows horizontally so there is
I have a block of text that im taking from a Gedcom ( Here
I have a block of code below with a single line commented out. What
I have the following code that is really bugging me, I'm thinking perhaps the

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.