在我的应用程序内部,我导入Foo和bar,依赖项将Foo中的对象注入到bar中的对象中.但是,我说,我不需要所有的Foo,只需要几个类.我怎么能在foo中创建一个子模块并导入它.例如. import Foo.Models.Animals.Dog
虽然你可以做类似的事情import struct MyModule.MyStructimport func Darwin.glob
我不确定你是否能比这更深入.这是(free) Swift book的相关报价
“ProvIDing more detail limits which symbols are imported—you can specify a specific submodule or a specific declaration within a module or submodule. When this detailed form is used,only the imported symbol (and not the module that declares it) is made available in the current scope.”
它继续解释您可以导入任何typealias,struct,class,enum,protocol,var或func
看起来Swift对子模块有一些类型的支持(他们在一些地方被提到了),但我不确定我们是否有能力实际编译它们.
总结以上是内存溢出为你收集整理的Swift中的子模块全部内容,希望文章能够帮你解决Swift中的子模块所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)