初始化器
init(_:
init(_:radix:uppercase:)
创建一个字符串,该字符串表示以 10 为基数的给定值,或其他一些指定的基数。
声明
init<T>(
_ value: T,
radix: Int = 10,
uppercase: Bool = false
) where T : BinaryInteger
参数
value
要转换为字符串的值。
radix
用于字符串表示的基数。
radix
必须至少为 2,最多为 36。默认为 10。uppercase
传递
true
以使用大写字母表示大于 9 的数字,或传递false
以使用小写字母。默认值为false
。
详述
以下示例将最大 Int
值转换为字符串并打印其长度:
let max = String(Int.max)
print("\(max) has \(max.count) digits.")
// Prints "9223372036854775807 has 19 digits."
大于 9 的数字表示为罗马字母。如果 uppercase
是 true
,则这些字母以 "A"
开头;否则,使用 "a"
。
let v = 999_999
print(String(v, radix: 2))
// Prints "11110100001000111111"
print(String(v, radix: 16))
// Prints "f423f"
print(String(v, radix: 16, uppercase: true))
// Prints "F423F"
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift String init(_:)用法及代码示例
- Swift String init()用法及代码示例
- Swift String init(cString:)用法及代码示例
- Swift String init(reflecting:)用法及代码示例
- Swift String init(stringLiteral:)用法及代码示例
- Swift String init(describing:)用法及代码示例
- Swift String init(repeating:count:)用法及代码示例
- Swift String init(unsafeUninitializedCapacity:initializingUTF8With:)用法及代码示例
- Swift String init(validatingUTF8:)用法及代码示例
- Swift String init(stringInterpolation:)用法及代码示例
- Swift String insert(contentsOf:at:)用法及代码示例
- Swift String index(_:offsetBy:limitedBy:)用法及代码示例
- Swift String index(_:offsetBy:)用法及代码示例
- Swift String indices用法及代码示例
- Swift String insert(_:at:)用法及代码示例
- Swift String isEmpty用法及代码示例
- Swift String suffix(from:)用法及代码示例
- Swift String removeAll(where:)用法及代码示例
- Swift String ...(_:_:)用法及代码示例
- Swift String last用法及代码示例
- Swift String contains(where:)用法及代码示例
- Swift String prefix(through:)用法及代码示例
- Swift String contains(_:)用法及代码示例
- Swift String firstIndex(where:)用法及代码示例
- Swift String first用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 String init(_:radix:uppercase:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。