在Swift中有匿名类的等效语法或技术吗?
只是为了澄清匿名类在Java示例这里 – http://docs.oracle.com/javase/tutorial/java/javaOO/anonymousclasses.html
只是为了澄清匿名类在Java示例这里 – http://docs.oracle.com/javase/tutorial/java/javaOO/anonymousclasses.html
谢谢!
据我所知,没有等效的语法。
原文链接:https://www.f2er.com/swift/320506.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