匿名类在swift

前端之家收集整理的这篇文章主要介绍了匿名类在swift前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Swift中有匿名类的等效语法或技术吗?
只是为了澄清匿名类在Java示例这里 – http://docs.oracle.com/javase/tutorial/java/javaOO/anonymousclasses.html

谢谢!

据我所知,没有等效的语法。

关于等效的技术,理论上你可以使用闭包并在其中定义结构体和类。可悲的是,我不能让这在一个操场或项目中工作,而不会使其崩溃。很可能这还没有准备好在目前的测试版中使用。

就像是…

protocol SomeProtocol {
    func hello()
}

let closure : () -> () = {
    class NotSoAnonymousClass : SomeProtocol {
        func hello() {
            println("Hello")
        }
    }
    let object = NotSoAnonymousClass()
    object.hello()
}

…目前输出错误

invalid linkage type for global declaration
%swift.full_heapMetadata* @_TMdCFIv4Test7closureFT_T_iU_FT_T_L_19NotSoAnonymousClass
LLVM ERROR: Broken module found,compilation aborted!
Command /Applications/Xcode6-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift Failed with exit code 1
原文链接:https://www.f2er.com/swift/320506.html

猜你在找的Swift相关文章