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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T14:20:44+00:00 2026-05-14T14:20:44+00:00

for (int i = 0; i < 10; i++) { Foo(); } int i

  • 0
for (int i = 0; i < 10; i++)
{
    Foo();
}
int i = 10; // error, 'i' already exists

----------------------------------------    

for (int i = 0; i < 10; i++)
{
    Foo();
}
i = 10; // error, 'i' doesn't exist

By my understanding of scope, the first example should be fine. The fact neither of them are allowed seems even more odd. Surely ‘i’ is either in scope or not.

Is there something non-obvious about scope I don’t understand which means the compiler genuinely can’t resolve this? Or is just a case of nanny-state compilerism?

  • 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-14T14:20:44+00:00Added an answer on May 14, 2026 at 2:20 pm

    By my understanding of scope, the first example should be fine.

    Your understanding of scope is fine. This is not a scoping error. It is an inconsistent use of simple name error.

    int i = 10; // error, ‘i’ already exists

    That is not the error that is reported. The error that is reported is “a local variable named i cannot be declared in this scope because it would give a different meaning to i which is already used in a child scope to denote something else“

    The error message is telling you what the error is; read the error message again. It nowhere says that there is a conflict between the declarations; it says that the error is because that changes the meaning of the simple name. The error is not the redeclaration; it is perfectly legal to have two things in two different scopes that have the same name, even if those scopes nest. What is not legal is to have one simple name mean two different things in nested local variable declarations spaces.

    You would get the error “a local variable named i is already defined in this scope” if instead you did something like

    int i = 10;
    int i = 10;
    

    Surely ‘i’ is either in scope or not.

    Sure — but so what? Whether a given i is in scope or not is irrelevant. For example:

    class C 
    {
        int i;
        void M()
        {
            string i;
    

    Perfectly legal. The outer i is in scope throughout M. There is no problem at all with declaring a local i that shadows the outer scope. What would be a problem is if you said

    class C 
    {
        int i;
        void M()
        {
            int x = i;
            foreach(char i in ...
    

    Because now you’ve used i to mean two different things in two nested local variable declaration spaces — a loop variable and a field. That’s confusing and error-prone, so we make it illegal.

    Is there something non-obvious about scope I don’t understand which means the compiler genuinely can’t resolve this?

    I don’t understand the question. Obviously the compiler is able to completely analyze the program; if the compiler could not resolve the meaning of each usage of i then how could it report the error message? The compiler is completely able to determine that you’ve used ‘i’ to mean two different things in the same local variable declaration space, and reports the error accordingly.

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

Sidebar

Ask A Question

Stats

  • Questions 378k
  • Answers 378k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Maybe you can read some papers related to MapReduce and… May 14, 2026 at 9:16 pm
  • Editorial Team
    Editorial Team added an answer It differs from vendor to vendor really. Most commonly, they… May 14, 2026 at 9:16 pm
  • Editorial Team
    Editorial Team added an answer You won't be able to have it "automatically" show up… May 14, 2026 at 9:16 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.