473,385 Members | 1,356 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

This case bypasses initialization of a local variable

follwing code gives error:
1 #include<iostream.h>
2 int main()
3 {
4 int a=5,b;
5 switch(a){
6 case 1:
7 {b=5;
8 break;
9 }
10 case 2:
11 b=7;
12 int c=4;
13 c=3;
14 break;
15 case 3:
16 c=2;
17 break;
18 }
19 return 0;
20 }
"1.cpp", line 15: Error: This case bypasses initialization of a local
variable.

If i put statements under case 2: in {}, i get error:
"1.cpp", line 18: Error: c is not defined.

So exactly what is happening?
i have read that
A problem occurs , when a variable is declared AND INITIALIZED, in a
location where the flow-of-control is undetermined relative to the
location of the declaration (after the declaration has been moved to the
beginning of the scope block).

Or perhaps a better way of saying it, is the compiler recognizes the
declaration and initialization as two different things:

the declaration is moved to a "static" location at the beginning of the
scope block
while the initialization is really an assignment statement whose execution
is "dynamic", that is, it depends on the flow of control through the
program
Can someone one explain reason in a more common way. I am not able to
understand it.Can you put code, as seen by compiler.

May 18 '06 #1
7 25084
gyan wrote:
follwing code gives error:
1 #include<iostream.h>
2 int main()
3 {
4 int a=5,b;
5 switch(a){
6 case 1:
7 {b=5;
8 break;
9 }
10 case 2:
11 b=7;
12 int c=4;
13 c=3;
14 break;
15 case 3:
16 c=2;
'c' is local to this 'switch'. However, if 'a' is 3, then the declaration
of 'c' (and its initialisation) does not get "executed". That's forbidden.
17 break;
18 }
19 return 0;
20 }
"1.cpp", line 15: Error: This case bypasses initialization of a local
variable.

If i put statements under case 2: in {}, i get error:
"1.cpp", line 18: Error: c is not defined.

So exactly what is happening?
What's happening is simple: you're trying to declare/define/initialise
a variable in one place and use it later, but the control flow _allows_
the delcaration/definition/initialisation to be skipped. Similar to

goto blah;
int c = 5; // this is skipped by the goto.
blah:
c = 2;
i have read that
A problem occurs , when a variable is declared AND INITIALIZED, in a
location where the flow-of-control is undetermined relative to the
location of the declaration (after the declaration has been moved to
the beginning of the scope block).
I am not sure I understand that (my coffee hasn't kicked in yet).
Or perhaps a better way of saying it, is the compiler recognizes the
declaration and initialization as two different things:

the declaration is moved to a "static" location at the beginning of
the scope block
while the initialization is really an assignment statement whose
execution is "dynamic", that is, it depends on the flow of control
through the program
Can someone one explain reason in a more common way. I am not able to
understand it.Can you put code, as seen by compiler.


The relevant part of your switch statement is semantically equivalent
to this:

if (a == 3) goto case3;
case2:
int c = 4;
c = 3;
case3:
c = 2;

If 'a' is indeed 3, the code that declares/defines/initialises 'c' is
stepped over.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
May 18 '06 #2
gyan napisał(a):
follwing code gives error:
1 #include<iostream.h>
there is no such standard header, use <iostream> instead
2 int main()
3 {
4 int a=5,b;
5 switch(a){
6 case 1:
7 {b=5;
8 break;
9 }
10 case 2:
11 b=7;
12 int c=4;
13 c=3;
14 break;
15 case 3:
16 c=2;
17 break;
18 }
19 return 0;
20 }
please, do not include line numbers like that, it prevents us from
copy-pasting code form newsreader in order to compile it

instead try indicating interesting lines in a comment:
int c=4;
c=3;
break;
case 3: //line 15
c=2;
break;
}


"1.cpp", line 15: Error: This case bypasses initialization of a local
variable.

If i put statements under case 2: in {}, i get error:
"1.cpp", line 18: Error: c is not defined.

So exactly what is happening?


its pretty strightforward, 'c' begins its life at line 12, it is however
visible in 'case 3' becouse its in the same scope,
when you enter 'case 3' you try to use variable 'c', but you ommit its
birth place/time which result in your first error message

when you intorduce a scope in 'case 2' 'c' is not visible in 'case 3'
thus second error message
May 18 '06 #3
Victor Bazarov <v.********@comacast.net> wrote:
The relevant part of your switch statement is semantically equivalent
to this: if (a == 3) goto case3;
case2:
int c = 4;
c = 3;
case3:
c = 2;


If it is not provable that a is always 3, must a conforming compiler
accept this code (possibly with helpful warnings)?

--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
May 19 '06 #4
So basically all of you saying that i am declaring/defining/initializing c
in case:2 and using it in case 3. Now it may possible that case 2 block
didn't got executed and in case 3: we are using variable c without
defining it.
But look if i put concern part of code as below:
int a=3;
switch(a){
case 2:
int c;
break;
case 3:
c=5;
cout<<c<<end;
}

I got it compiled and executed successfully.Why?

May 19 '06 #5
Hi All,
I will like to make my question more straight forward. See code as
#include<iostream.h>
int main()
{
int a=1;
switch(a){
case 1:
int b=3;
break;
case 2:
break;

}
return 0;
}

When compiling, i get error:
"1.cpp", line 9: Error: This case bypasses initialization of a local
variable.
May 19 '06 #6
Christopher Benson-Manica wrote:
Victor Bazarov <v.********@comacast.net> wrote:
The relevant part of your switch statement is semantically equivalent
to this:

if (a == 3) goto case3;
case2:
int c = 4;
c = 3;
case3:
c = 2;


If it is not provable that a is always 3, must a conforming compiler
accept this code (possibly with helpful warnings)?


Well, a conforming compiler is allowed to accept any code even if it's
ill-formed (see clause 1, subclause 1.4, for example).

6.7/3 allows to jump over a declaration of a local object if it is of POD
type and doesn't contain an initialiser. The code above is ill-formed.
A diagnostic is required; I conclude that based on the fact that the text
of the Standard does not contain "no diagnostic required" in 6.7/3.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
May 19 '06 #7
gyan wrote:
I will like to make my question more straight forward.
There is no question anywhere in this post. Care to ask it?
See code as
#include<iostream.h>
You've been told already, IIRC that <iostream.h> is a non-standard header.
Please stop using it, it's for your own good. Besides, in this program
there is no need to include it at all.
int main()
{
int a=1;
switch(a){
case 1:
int b=3;
break;
case 2:
break;

}
return 0;
}

When compiling, i get error:
"1.cpp", line 9: Error: This case bypasses initialization of a local
variable.


Yes, according to the rules of the language. There are no requirements
for a compiler to be as sophisticated as to prove that 'a' in your code
above cannot have any other value than 1. You can do it yourself, if you
need to. Some compilers can do it. Many don't bother.

The bottomline is, don't write such programs. And if the compiler tells
you that your code contains an error, fix it.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
May 19 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: NS Develop | last post by:
What's wrong with the following: void SomeClass::someMethod(void) { A *ptrA = NULL; ptrA = &A(); .... }
2
by: Kench | last post by:
I was curious and playing with pointers and references to see what's different between them. Other than the obvious ones involving C++ syntax & things like references cannot be modified with...
6
by: romerun | last post by:
Hello, This make me very confusing: ---------------------------------- int &kkk() { int a = 5; return a; }
11
by: Alzane | last post by:
I'm new to C++ programming. I have an exercise that I have written code for but getting warnings. Can I get some help? #include "stdafx.h" #include <string.h> #include <stdio.h> #include...
3
by: John Smith | last post by:
In the following (pseudo)code, why is it that C# returns an "unassigned local variable" error for nVar? It seems I have to declare the variable outside foo() for the error to dissapear. void...
7
by: Edward Yang | last post by:
A few days ago I started a thread "I think C# is forcing us to write more (redundant) code" and got many replies (more than what I had expected). But after reading all the replies I think my...
2
by: silverburgh.meryl | last post by:
Can you please tell me what is the meaning this error in general? UnboundLocalError: local variable 'colorIndex' referenced before assignment In my python script, I have a variable define and...
22
by: Laura T. | last post by:
In the following example, c# 2.0 compiler says that a3 and ret are used before assigned. as far as I can see, definite assignment is made. If I add finally { ret = true; a3 = "b3";
2
by: Jess | last post by:
Hello, I understand that if a function "f" has a local variable "a", and after it returns, "a" vanishes. If "f" returns "a" as a result, then I noticed the following: 1. if the return type is...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.