a declaration cannot be both 'final' and 'dynamic'

前端之家收集整理的这篇文章主要介绍了a declaration cannot be both 'final' and 'dynamic'前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

swift 1.2 编译的时候,遇到如下的错误信息:

a declaration cannot be both 'final' and 'dynamic'

不明所以,不知道是什么原因,后来发现是因为在extension里面添加static var变量的时候出现了该问题,例如:

class MyClass {
}

extension MyClass {
    static var someProperty = 1
    //something else
}

编译就会出错,但是,将

static var someProperty = 1

类里,就没有任何问题。即:

class MyClass {
    static var someProperty = 1
}

extension MyClass {
    //something else
}

具体原因没仔细去查,先做个备注。

原文链接:https://www.f2er.com/swift/326079.html

猜你在找的Swift相关文章