摘要:
1. 右值:只可以放在等号右侧的变量。例如下面的例子: 1 2 3 4 int a = 1; int b = a + 2; int& c = a + 2; //error a+2 = 3; // error 这里的a+2只能放在等好的右侧,所以a+2是右值。 为什么a+2只能放在等号右侧呢?原因在于 阅读全文
摘要:
1. let synthesizer = AVSpeechSynthesizer() synthesizer.speak(AVSpeechUtterance(string: "Hello AV Foundation. How are you?")) https://blog.csdn.net/wei 阅读全文