在swift中声明一个null语句

时间:2014-12-04 11:05:36

标签: swift-playground

我一直在swift的游戏中工作,只是想创建这个声明:

if (player1!=null)||(player2!=null)
    println("You are out of the game")

我已经为player1player2宣布了一个变量,但我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

将其写入Swift而不是C:

if player1 != nil || player2 != nil {
    println("You are out of the game")
}