当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Swift BinaryInteger init(_:)用法及代码示例


用法一

初始化器

init(_:)

从给定的浮点值创建一个整数,向零舍入。

必需的。提供的默认实现。

声明

init<T>(_ source: T) where T : BinaryFloatingPoint

参数

source

要转换为整数的浮点值。 source 在向零舍入后必须可以在此类型中表示。

详述

作为 source 传递的值的任何小数部分都将被删除,将值四舍五入到零。


let x = Int(21.5)
// x == 21
let y = Int(-21.5)
// y == -21

如果 source 在向零舍入后超出此类型的范围,则可能会发生运行时错误。


let z = UInt(-21.5)
// Error: ...the result would be less than UInt.min

可用版本

iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+

用法二

初始化器

init(_:)

从给定的整数创建一个新实例。

必需的。提供的默认实现。

声明

init<T>(_ source: T) where T : BinaryInteger

参数

source

要转换的整数。 source 必须在此类型中可表示。

详述

如果作为 source 传递的值在此类型中不可表示,则可能会发生运行时错误。


let x = -500 as Int
let y = Int32(x)
// y == -500


// -500 is not representable as a 'UInt32' instance
let z = UInt32(x)
// Error

可用版本

iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+

相关用法


注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 BinaryInteger init(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。