用法一
init(_:)
聲明
init?(_ description: String)
參數
description
數字的 ASCII 表示。
詳述
作為description
傳遞的字符串可以以加號或減號字符(+
或-
)開頭,後跟一個或多個數字(0-9
)。
let x = Int("123")
// x == 123
如果 description
的格式無效,或者它以 10 為基數表示的值不可表示,則結果為 nil
。例如,以下轉換導致 nil
:
Int(" 100") // Includes whitespace
Int("21-50") // Invalid format
Int("ff6600") // Characters out of bounds
Int("10000000000000000000000000") // Out of range
可用版本
用法二
init(_:)
聲明
init(_ source: Float16)
參數
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
可用版本
用法三
init(_:)
聲明
init(_ source: Float80)
參數
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
可用版本
用法四
init(_:)
source
傳遞的值的任何小數部分都將被刪除。聲明
init<T>(_ source: T) where T : BinaryFloatingPoint
參數
source
要轉換為整數的浮點值。
source
在向零舍入後必須可以在此類型中表示。
詳述
let x = Int(21.5)
// x == 21
let y = Int(-21.5)
// y == -21
如果 source
在向零舍入後超出此類型的範圍,則可能會發生運行時錯誤。
let z = UInt(-21.5)
// Error: ...outside the representable range
可用版本
用法五
init(_:)
聲明
init<T>(_ source: T) where T : BinaryInteger
Self
符合 FixedWidthInteger
時可用。參數
source
要轉換為此類整數的值。作為
source
傳遞的值必須可以在此類型中表示。
詳述
當您知道值在此類型的範圍內時,使用此初始化程序從另一個整數類型轉換。傳遞無法以這種類型表示的值會導致運行時錯誤。
在以下示例中,常量 y
是從 x
成功創建的,這是一個值為 100
的 Int
實例。因為 Int8
類型最多可以表示 127
,所以嘗試使用 1000
的值創建 z
會導致運行時錯誤。
let x = 100
let y = Int8(x)
// y == 100
let z = Int8(x * 10)
// Error: Not enough bits to represent the given value
可用版本
用法六
init(_:)
聲明
init(_ source: Double)
參數
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
可用版本
用法七
init(_:)
聲明
init(_ source: Float)
參數
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
可用版本
相關用法
- Swift UInt8 init(_:radix:)用法及代碼示例
- Swift UInt8 init(integerLiteral:)用法及代碼示例
- Swift UInt8 init(clamping:)用法及代碼示例
- Swift UInt8 init(truncatingIfNeeded:)用法及代碼示例
- Swift UInt8 init(exactly:)用法及代碼示例
- Swift UInt8 ~(_:)用法及代碼示例
- Swift UInt8 leadingZeroBitCount用法及代碼示例
- Swift UInt8 ..<(_:_:)用法及代碼示例
- Swift UInt8 *=(_:_:)用法及代碼示例
- Swift UInt8 multipliedFullWidth(by:)用法及代碼示例
- Swift UInt8 ^=(_:_:)用法及代碼示例
- Swift UInt8 *(_:_:)用法及代碼示例
- Swift UInt8 trailingZeroBitCount用法及代碼示例
- Swift UInt8 +(_:)用法及代碼示例
- Swift UInt8 >>=(_:_:)用法及代碼示例
- Swift UInt8 >>(_:_:)用法及代碼示例
- Swift UInt8 |(_:_:)用法及代碼示例
- Swift UInt8 nonzeroBitCount用法及代碼示例
- Swift UInt8 ==(_:_:)用法及代碼示例
- Swift UInt8 &-=(_:_:)用法及代碼示例
- Swift UInt8 &<<(_:_:)用法及代碼示例
- Swift UInt8 &=(_:_:)用法及代碼示例
- Swift UInt8 <<=(_:_:)用法及代碼示例
- Swift UInt8 -(_:_:)用法及代碼示例
- Swift UInt8 &(_:_:)用法及代碼示例
注:本文由純淨天空篩選整理自apple.com大神的英文原創作品 UInt8 init(_:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。