当前位置:  开发笔记 > 编程语言 > 正文

在switch块中实例化新对象 - 为什么会失败?

如何解决《在switch块中实例化新对象-为什么会失败?》经验,为你挑选了1个好方法。

为什么

switch ([document currentTool]) {
    case DrawLine:
        NSBezierPath * testPath = [[NSBezierPath alloc]init];
        //...rest of code that uses testPath....

造成

error:syntax error before "*" token

对于testPath?



1> Graeme Perro..:

除非将其放在新范围内,否则无法在case语句中实例化对象.这是因为否则你可以这样做:

switch( ... ) {
    case A:
       MyClass obj( constructor stuff );
       // more stuff
       // fall through to next case
    case B:
       // what is the value of obj here? The constructor was never called
    ...
}

如果希望对象在案例持续时间内持续,则可以执行以下操作:

switch( ... ) {
    case A: {
       MyClass obj( constructor stuff );
       // more stuff
       // fall through to next case
    }
    case B:
       // obj does not exist here
    ...
}

在Objective C以及C和C++中也是如此.

推荐阅读
爱唱歌的郭少文_
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有