字符串 – Swift init(count :, repeatedValue :)是否工作?

前端之家收集整理的这篇文章主要介绍了字符串 – Swift init(count :, repeatedValue :)是否工作?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
从参考: https://developer.apple.com/library/prerelease/ios/documentation/General/Reference/SwiftStandardLibraryReference/index.html测试
var string = String(count: 5,repeatedValue: "a")
// string is "aaaaa"

我收到这个错误

Playground execution Failed: error: :5:14: error: could not find an overload for ‘init’ that accepts the supplied arguments
var string = String(count: 5,repeatedValue: “a”)

这实际上有效吗?

看来你必须明确地将一个Character类型传递给它才能运行。这对我有用
let char = Character("a")
let string = String(count: 5,repeatedValue: char)

尽管如此,也可能存在与此相关的错误。我相信你这样做的方式本身应该是有效的。我似乎完全没有在这个初始化程序上完成代码

编辑:我要跟bug以下编译很好。

let array = Array(count: 5,repeatedValue: "a")
原文链接:https://www.f2er.com/swift/320408.html

猜你在找的Swift相关文章