1
在Swift中,下面是什麼樣的語法?讓(你好,世界)的Swift語法:(字符串,字符串)=(「你好」,「世界」)
let (hello, world):(String,String) = ("hello","world")
print(hello) //prints "hello"
print(world) //prints "world"
是它的簡寫:
let hello = "hello"
let world = "world"
如果它是一個縮寫,所謂這個速記?這種類型的styntax是否有任何Swift文檔?
hm。那麼我怎樣才能打印出每個變種,就像它們被單獨聲明一樣:print(hello)//打印「hello」print(world)//打印「world」 –
從文檔:*你可以將一個元組的內容分解成單獨的常量或變量,然後像往常一樣訪問:* – vadian