?switch内部变量定义
bool flag=false;
swich(flag)
{
case true:
int i=10;
case false:
cout<<"lll"<<endl;
}
报错:i在switch里通篇可见(在{}内),可能在false分支用到i,跨过初始化直接使用,出现错误。即使这段程序未在false分支使用i,编译器也会报错
bool flag=false;
swich(flag)
{
case true:
int i;
case false:
cout<<"lll"<<endl;
cout<<i<<endl;
}
不会报错:定义一个变量是在编译阶段,运行时编译器已知有i,可在false使用
初始化是在运行阶段,运行时编译器还不知道i,产生报错
解决办法:用花括号扩上,用i就是错误,不用就是正确
bool flag=false;
swich(flag)
{
case true:
{
int i=10;
}
case false:
{
cout<<"lll"<<endl;
cout<<i<<endl;
}
}
练习题
5.11
不能用cin>>ch 会忽略空白字符(空格,制表,换行)
while(cin.get(ch))
5.12 从后面找ifl,再看前面是不是f
char ch,pre='\0';//pre需要初始化!!!
while(cin>>ch)
{
if(ch=="f"&&pre=="f")
++ff_cnt;
if(ch=="f"&&pre=="i")
++fi_cnt;
if(ch=="f"&&pre=="l")
++fl_cnt;
pre=ch;//!!!
}