swith 引起的: expected expression before 'XXX'的 error

来源:互联网 发布:福建顶点软件联系 编辑:程序博客网 时间:2024/05/16 04:33

  今天在写switch的时候遇到个奇怪的问题,

 

case DEFAULT:

UIImage *image1 = [UIImage imageNamed:@"fillcolor_10.png"];

image1 = [image1 convertToScaleWithColor:GRAYCOLOR];

 

我直接在case 标签后面 声明 并定义一个 UIImage 对象,但是它提示  expected expression before UIImage的错误,搞了半天没明白哪里出了问题,最后上网找发现,像 case这类标签语句后面 你 不能立即放置一个声明语句, 它们 “can only precede a statement”(后面必须紧跟一个statement 不知道怎么翻译这个 statement )也就是说 在 UIImage前面随便加个 statement 就没问题,

 

case DEFAULT:

; (加了个分号)

 

UIImage *image1 = [UIImage imageNamed:@"fillcolor_10.png"];

image1 = [image1 convertToScaleWithColor:GRAYCOLOR];

 

或者你也可以将你的声明用大括号 括起来,

 

case DEFAULT:

{

 

UIImage *image1 = [UIImage imageNamed:@"fillcolor_10.png"];

image1 = [image1 convertToScaleWithColor:GRAYCOLOR];

}

 

总之我觉得这东西有点古怪,写下来提醒下自己


原文地址:http://blog.csdn.net/imstyle1001/article/details/6431560

原创粉丝点击