gpt4 book ai didi

swift - 有什么方法可以弄清楚为什么 Swift 中的不同编写会导致编译时间如此巨大的差距?

转载 作者:可可西里 更新时间:2023-11-01 02:00:43 24 4
gpt4 key购买 nike

有两种不同的写法:

func dicFuncA() -> Dictionary<String, Any> {
return [
"a": "ooo",
"b": 30,
"c": [1, 2, 3],
"d": 2.33
]
}

func dicFuncB() -> Dictionary<String, Any> {
let dic: [String : Any] = [
"a": "ooo",
"b": 30,
"c": [1, 2, 3],
"d": 2.33
]

return dic
}

将“-Xfrontend -debug-time-function-bodies”添加到Other Swift Flags时:

enter image description here

我们可以得到函数的编译时间:

enter image description here

dicFuncA的编译时间是dicFuncB的大约54倍!

这是为什么?

可能是类型检查的原因。但是,有什么方法可以弄清楚编译器在编译期间做了什么?

我尝试使用 swiftc 命令,例如 -dump-ast/-dump-parse,找出真正的原因。但是,还是一头雾水。

最佳答案

您的观察很好。在 Swift 中,当未定义数据类型时,编译器必须推断它。让我们看看是什么Apple Documentation说:

...the type information is passed up from the leaves of the expression tree to its root. That is, the type of x in var x: Int = 0 is inferred by first checking the type of 0 and then passing this type information up to the root (the variable x).

所以编译器必须检查字典中每个元组的类型,并据此设置字典的类型。这个操作是昂贵的。

为了好玩,您可以了解编译时间与元组数量的相关性。

关于swift - 有什么方法可以弄清楚为什么 Swift 中的不同编写会导致编译时间如此巨大的差距?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46558145/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com