用法一
初始化器
init(repeating:
init(repeating:count:)
創建一個字符串,表示重複指定次數的給定字符。
聲明
init(
repeating repeatedValue: Character,
count: Int
)
參數
repeatedValue
要重複的字符。
count
在結果字符串中重複
repeatedValue
的次數。
詳述
例如,使用此初始化程序創建一個連續包含十個 "0"
字符的字符串。
let zeroes = String(repeating: "0" as Character, count: 10)
print(zeroes)
// Prints "0000000000"
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
用法二
初始化器
init(repeating:
init(repeating:count:)
創建一個表示給定字符串重複指定次數的新字符串。
聲明
init(
repeating repeatedValue: String,
count: Int
)
參數
repeatedValue
要重複的字符串。
count
在結果字符串中重複
repeatedValue
的次數。
詳述
例如,您可以使用此初始化程序創建一個字符串,其中包含連續十個 "ab"
字符串。
let s = String(repeating: "ab", count: 10)
print(s)
// Prints "abababababababababab"
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
用法三
初始化器
init(repeating:
init(repeating:count:)
創建一個包含指定數量的單個重複值的新集合。
聲明
init(
repeating repeatedValue: Self.Element,
count: Int
)
參數
repeatedValue
要重複的元素。
count
重複
repeating
參數中傳遞的值的次數。count
必須為零或更大。
詳述
下麵是創建一個數組的示例,該數組使用包含字母 Z
的五個字符串進行初始化。
let fiveZs = Array(repeating: "Z", count: 5)
print(fiveZs)
// Prints "["Z", "Z", "Z", "Z", "Z"]"
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相關用法
- Swift String init(reflecting:)用法及代碼示例
- Swift String init()用法及代碼示例
- Swift String init(_:radix:uppercase:)用法及代碼示例
- Swift String init(cString:)用法及代碼示例
- Swift String init(stringLiteral:)用法及代碼示例
- Swift String init(describing:)用法及代碼示例
- Swift String init(unsafeUninitializedCapacity:initializingUTF8With:)用法及代碼示例
- Swift String init(validatingUTF8:)用法及代碼示例
- Swift String init(stringInterpolation:)用法及代碼示例
- Swift String init(_:)用法及代碼示例
- 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(repeating:count:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。