我一直在swift的游戏中工作,只是想创建这个声明:
if (player1!=null)||(player2!=null)
println("You are out of the game")
我已经为player1
和player2
宣布了一个变量,但我该如何解决这个问题?
答案 0 :(得分:0)
将其写入Swift而不是C:
if player1 != nil || player2 != nil {
println("You are out of the game")
}