Swift语言基础 - for循环与可选值
Posted 爱上Xcode
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift语言基础 - for循环与可选值相关的知识,希望对你有一定的参考价值。
每天几分钟,轻松学苹果。
原文翻译
let individualScores = [75, 43, 103, 87, 12]
var teamScore = 0
for score in individualScores {
if score > 50 {
teamScore += 3
} else {
teamScore += 1
}
}
print(teamScore)
// Prints "11"
var optionalName: String? = "John Appleaseed"
var greeting = "Hello!"
if let name = optionalName {
greeting = "Hello, \(name)"
}
以上是关于Swift语言基础 - for循环与可选值的主要内容,如果未能解决你的问题,请参考以下文章