gpt4 book ai didi

swift - 原始类型的快速扩展性能

转载 作者:搜寻专家 更新时间:2023-11-01 06:32:13 24 4
gpt4 key购买 nike

我想知道 swift 中的以下各项是否会有任何性能差异:

let x = 42.42
print(floor(x))

let x = 42.42
extension Double {
func myFloor() -> Double {
return floor(self)
}
}
print(x.myFloor())

最佳答案

编译器在第二种情况下内联代码并生成相同的机器代码。 You can see for yourself, here.

enter image description here

关于swift - 原始类型的快速扩展性能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45558276/

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