美文网首页
Day-4【SwiftUI的100天】

Day-4【SwiftUI的100天】

作者: 哈哈11122 | 来源:发表于2023-10-22 10:23 被阅读0次

如何使用类型注释

var name: String = "John"
var score: Double = 0

var albums: [String] = ["Red", "Fearless"]
var user: [String: String] = ["id": "@twostraws"]
var books: Set<String> = Set(["The Bluest Eye", "Foundation", "Girl, Woman, Other"])
//赋予空值
var cities: [String] = []
var clues = [String]()

下面初始化是否合法?

let username: String
// lots of complex logic
username = "@twostraws"
// lots more complex logic
print(username)

相关文章

网友评论

      本文标题:Day-4【SwiftUI的100天】

      本文链接:https://www.haomeiwen.com/subject/enbridtx.html