gpt4 book ai didi

swift - Swift 中的数学函数

转载 作者:行者123 更新时间:2023-11-30 10:36:23 28 4
gpt4 key购买 nike

如何使用数学函数,例如 sqrt()floor()round()sin() 等?

<小时/>

做的时候:

_ = floor(2.0)
_ = sqrt(2.0)

我得到:

error: use of unresolved identifier 'floor'
error: use of unresolved identifier 'sqrt'

enter image description here

最佳答案

正如其他人指出的,您有多种选择。如果您只想要数学函数。您只能导入 Darwin。

import Darwin

如果您想要数学函数和其他标准类和函数。您可以导入 Foundation。

import Foundation

如果您想要用户界面的所有内容和类,这取决于您的 Playground 是适用于 OS X 还是 iOS。

对于 OS X,您需要导入 Cocoa。

import Cocoa

对于iOS,您需要导入UIKit。

import UIKit

您可以通过打开文件检查器 (⌥⌘1) 轻松发现您的 Playground 平台。

Playground Settings - Platform

关于swift - Swift 中的数学函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57903828/

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