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

  今天在写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];

}

 

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

 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值