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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T07:19:33+00:00 2026-05-21T07:19:33+00:00

This is probably a bit subjective, but I’m in fact looking for answers that

  • 0

This is probably a bit subjective, but I’m in fact looking for answers that contain some reasoning.

I’ve met the following two programming styles for conditions in loop bodies. This:

for (int i = 0; i < myArray.length; i++) {
    if (myArray[i].isEmpty())
        continue;

    doSomeStuff();
    doSomeMoreStuff();
}

And this:

for (int i = 0; i < myArray.length; i++) {
    if (!myArray[i].isEmpty()) {
        doSomeStuff();
        doSomeMoreStuff();
    }
}

I’ve usually used the first style, because it keeps indentation levels sane, especially when there’s more than one condition. But I began to wonder if the second isn’t actually cleaner. Do you have a preferred style and can you explain why?

Update:

Here’s a more realistic example. Imagine I’m reading a file like this “First name: Last name”, e.g.:

John;Doe
Joe;Bloggs

This is how I read each line into a name object, ignoring empty lines (which may occur):

while (line = file.readLine()) {
    if (line.isEmpty())
        continue;

    String[] columns = line.split(";");
    names.add(new Name(columns[0], columns[1]));
}
  • 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-21T07:19:34+00:00Added an answer on May 21, 2026 at 7:19 am

    The fact is that the second increases cyclomatic complexity and may lead to the arrowhead antipattern.

    In addition, keeping all your “code should not pass this point” checks at the beginning allows you to group them together, which means they are easier to maintain imho.

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

Sidebar

Related Questions

I'm a bit new to Rails/RSpec/Capybara, so this is probably a newbie question, but
So this one is probably very simple, but I'm having a bit of trouble
Dang-I know this is a subjective question so will probably get booted off/locked, but
This is probably pushing the boundaries of Linq-to-Sql a bit but given how versatile
Probably this is not a difficult question, but I am always a little bit
This is probably a really straightforward answer - but a bit of advice would
This is probably obvious, but I'm a bit of a newbie and have spent
So this is probably an easy thing that I'm trying to do but I'm
This is probably a bit low question, but is there any elegant way, how
This is probably a bit of a limited, but valuable scenario. I have 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.