2

在变量之前或之后写 try 有什么区别?我的意思是:

do {
    audioPlayer = try AVAudioPlayer(contentsOf: soundUrl!)
} 
catch {
    print(error)
}

和这个:

do {
    try audioPlayer = AVAudioPlayer(contentsOf: soundUrl!)
}
catch {
    print(error)
}

他们都工作我只是好奇。

4

0 回答 0