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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T08:24:36+00:00 2026-06-18T08:24:36+00:00

Possible Duplicate: Why does this get error? The 3 methods below do exactly the

  • 0

Possible Duplicate:
Why does this get error?

The 3 methods below do exactly the same thing and obviously return true.

However, the first two compile but the third one does not (“missing return statement”).

What part of the language specification dictates that behaviour?

boolean returnTrue_1() { // returns true
    return true;
}

boolean returnTrue_2() { // returns true
    for (int i = 0; ; i++) { return true; }
}

boolean returnTrue_3() { // "missing return statement"
    for (int i = 0; i < 1; i++) { return true; }
}
  • 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-06-18T08:24:38+00:00Added an answer on June 18, 2026 at 8:24 am

    The compiler gives an error in compliance with JLS 8.4.7, because it determines that the method can complete normally:

    If a method is declared to have a return type, then a compile-time error occurs if the body of the method can complete normally.

    To determine if the method can complete normally, the compiler needs to determine whether the for loop can complete normally, which is defined in JLS 14.21:

    A basic for statement can complete normally iff at least one of the following is true:

    • The for statement is reachable, there is a condition expression, and the condition expression is not a constant expression with value true.
    • There is a reachable break statement that exits the for statement.

    In the case of the third method, there is a condition expression and it is not a constant expression because i is not final. So the for statement can complete normally and the method can too as a consequence.

    QED.

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

Sidebar

Related Questions

Possible Duplicate: Why does this intentionally incorrect use of strcpy not fail horribly? Below
Possible Duplicate: Reference - What does this error mean in PHP? I had a
Possible Duplicate: does code in finally get run after a return in objective-c? Consider
Possible Duplicate: Reference - What does this error mean in PHP? I am having
Possible Duplicate: Reference - What does this error mean in PHP? Good Day, I
Possible Duplicate: Reference - What does this error mean in PHP? In the following
Possible Duplicate: How does this CSS triangle shape work? Please help me i need
Possible Duplicate: Why does this integer division yield 0? I have a C header
Possible Duplicate: Reference - What does this symbol mean in PHP? I have a
Possible Duplicate: Reference - What does this symbol mean in PHP? What's the difference

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.