classの配列を作る
標準のinit(repeating:count:)
Array(repeating: HogeClass(), count: 3)
Array(repeating: HogeClass(), count: 3)
これでできる配列の要素は全て同じ参照になります。
Array
の拡張
extension Array {
init(repeatingWith repeatedClosure: () -> Array.Element, count: Int) {
self.init()
for _ in 0 ..< count {
self.append(repeatedClosure())
}
}
}
Array(repeatingWith: { HogeClass() }, count: 3)
extension Array {
init(repeatingWith repeatedClosure: () -> Array.Element, count: Int) {
self.init()
for _ in 0 ..< count {
self.append(repeatedClosure())
}
}
}
Array(repeatingWith: { HogeClass() }, count: 3)
こうすると配列の要素を全て別の参照にすることができます。
Author And Source
この問題について(classの配列を作る), 我々は、より多くの情報をここで見つけました https://qiita.com/Hotari/items/6704b2ca5d754b36b09b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .