- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
它们有什么不同?我有点困惑,因为它们似乎是相似的概念。
了解它们如何帮助优化编译时间?
最佳答案
来自 Swift 自己的 documentation :
Swift 是一种类型安全的语言。类型安全的语言鼓励您清楚代码可以使用的值类型。 如果您的部分代码需要一个 String,您就不能错误地将一个 Int 传递给它。
var welcomeMessage: String
welcomeMessage = 22 // this would create an error because you
//already specified that it's going to be a String
如果您不指定您需要的值的类型,Swift 会使用类型推断来计算出合适的类型。类型推断使编译器能够在编译您的代码时自动推断出特定表达式的类型,只需检查您提供的值即可。
var meaningOfLife = 42 // meaningOfLife is inferred to be of type Int
meaningOfLife = 55 // it Works, because 55 is an Int
类型安全和类型推断相结合
var meaningOfLife = 42 // 'Type inference' happened here, we didn't specify that this an Int, the compiler itself found out.
meaningOfLife = 55 // it Works, because 55 is an Int
meaningOfLife = "SomeString" // Because of 'Type Safety' ability you will get an
//error message: 'cannot assign value of type 'String' to type 'Int''
想象一下下面的协议(protocol)
protocol Identifiable {
associatedtype ID
var id: ID { get set }
}
你会像这样采用它:
struct Person: Identifiable {
typealias ID = String
var id: String
}
但是你也可以这样采用它:
struct Website: Identifiable {
var id: URL
}
您可以删除typealias
。编译器仍会推断类型。
有关更多信息,请参阅 Generics - Associated Types
Thanks to Swift’s type inference, you don’t actually need to declare aconcrete Item of Int as part of the definition of IntStack. BecauseIntStack conforms to all of the requirements of the Containerprotocol, Swift can infer the appropriate Item to use, simply bylooking at the type of the append(_:) method’s item parameter and thereturn type of the subscript. Indeed, if you delete the typealias Item= Int line from the code above, everything still works, because it’s clear what type should be used for Item.
假设您有以下代码:
struct Helper<T: Numeric> {
func adder(_ num1: T, _ num2: T) -> T {
return num1 + num2
}
var num: T
}
T
可以是任何数字,例如Int
、Double
、Int64
等
然而,一旦您键入 let h = Helper(num: 10)
,编译器就会假设 T
是一个 Int
。它不再接受 Double
、Int64
作为其 adder
函数。它只会接受 Int
。
这又是因为类型推断和类型安全。
Int
类型。T
被设置为Int
类型,它将不再接受Int64
,双
...正如您在屏幕截图中看到的那样,签名现在更改为仅接受 Int
类型的参数
您的代码必须进行的类型推断越少,编译速度就越快。因此,建议避免集合文字。集合越长,其类型推断变得越慢......
不错
let names = ["John", "Ali", "Jane", " Taika"]
好
let names : [String] = ["John", "Ali", "Jane", " Taika"]
有关更多信息,请参阅 this answer .
另见 Why is Swift compile time so slow?
该解决方案帮助他的编译时间从 10/15 秒减少到一秒。
关于swift - 类型安全和类型推断有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37707403/
有没有办法在 .swift 文件(编译成 .swift 模块)中声明函数,如下所示: 你好.swift func hello_world() { println("hello world")
我正在尝试使用 xmpp_messenger_ios 和 XMPPFramework 在 iOS 上执行 MUC 这是加入房间的代码。 func createOrJoinRoomOnXMPP()
我想在我的应用程序上创建一个 3D Touch 快捷方式,我已经完成了有关快捷方式本身的所有操作,它显示正确,带有文本和图标。 当我运行这个快捷方式时,我的应用程序崩溃了,因为 AppDelegate
我的代码如下: let assetTag = Expression("asset_tag") let query2 = mdm.select(mdm[assetTag],os, mac, lastRe
我的 swift 代码如下所示 Family.arrayTuple:[(String,String)]? = [] Family.arrayTupleStorage:String? Family.ar
这是我的 JSON,当我读取 ord 和 uniq 数据时出现错误 let response2 : [String: Any] = ["Response":["status":"SUCCESS","
我想将 swift 扩展文件移动到 swift 包中。但是,将文件移动到 swift 包后,我遇到了这种错误: "Type 'NSAttributedString' has no member 'ma
使用CocoaPods,我们可以设置以下配置: pod 'SourceModel', :configurations => ['Debug'] 有什么方法可以用 Swift Package Manag
我正在 Xcode 中开发一个 swift 项目。我将其称为主要项目。我大部分都在工作。我在日期选择器、日期范围和日期数学方面遇到了麻烦,因此我开始了另一个名为 StarEndDate 的项目,其中只
这是 ObjectiveC 代码: CCSprite *progress = [CCSprite spriteWithImageNamed:@"progress.png"]; mProgressBar
我正在创建一个命令行工具,在 Xcode 中使用 Swift。我想使用一个类似于 grunt 的配置文件确实如此,但我希望它是像 Swift 包管理器的 package.swift 文件那样的快速代码
我假设这意味着使用系统上安装的任何 swift 运行脚本:#!/usr/bin/swift 如何指定脚本适用的解释器版本? 最佳答案 Cato可用于此: #!/usr/bin/env cato 1.2
代码说完全没问题,没有错误,但是当我去运行模拟器的时候,会出现这样的字样: (Swift.LazyMapCollection (_base:[ ] 我正在尝试创建一个显示报价的报价应用。 这是导入
是否可以在运行 Swift(例如 Perfect、Vapor、Kitura 等)的服务器上使用 RealmSwift 并使用它来存储数据? (我正在考虑尝试将其作为另一种解决方案的替代方案,例如 no
我刚开始学习编程,正在尝试完成 Swift 编程书中的实验。 它要求““编写一个函数,通过比较两个 Rank 值的原始值来比较它们。” enum Rank: Int { case Ace = 1 ca
在您将此问题标记为重复之前,我检查了 this question 它对我不起作用。 如何修复这个错误: error: SWIFT_VERSION '5.0' is unsupported, suppo
从 Xcode 9.3 开始,我在我的模型中使用“Swift.ImplicitlyUnwrappedOptional.some”包裹了我的字符串变量 我不知道这是怎么发生的,但它毁了我的应用程序! 我
这个问题在这里已经有了答案: How to include .swift file from other .swift file in an immediate mode? (2 个答案) 关闭 6
我正在使用 Swift Package Manager 创建一个应用程序,我需要知道构建项目的配置,即 Debug 或 Release。我试图避免使用 .xcodeproj 文件。请有人让我知道这是否
有一个带有函数定义的文件bar.swift: func bar() { println("bar") } 以及一个以立即模式运行的脚本foo.swift: #!/usr/bin/xcrun s
我是一名优秀的程序员,十分优秀!