2014-12-04 106 views
-1

我一直在工作我的方式在周圍迅速一場比賽,只是想創建這樣一句話:聲明一個空語句在迅速

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

我已經聲明的變量爲player1player2,但我該怎麼辦去這個嗎?

回答

0

寫在斯威夫特,而不是C:

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