自左向右运算,+号有字符串参与的话就是连接的作用,因为他没法直接运算. 任何类型和字符串相加都会变成字符串类型 字符串就相当于生化危机中的僵尸,碰到谁就把谁感染成僵尸1|2二、类型转换之自增自减和赋值1. 类型转换易错点:public class Demo01{ public static void main(String[] args){ short s = 1; ...
{ QString str="test";if(str==0) { QMessageBox msgBox; msgBox.setText("The document has been modified."); msgBox.exec(); str=1; } } 编译通过,我还以为自己看错了。专门做了一个Demo,结果还是编译通过。 后来找到了理论解释,就是使用了重载,其参数通过自动转换获得: QString & operator=(const...
void MainWindow::on_pushButton_clicked() { QString str = "test"; if (str==0) { QMessageBox msgBox; msgBox.setText("The document has been modified."); msgBox.exec(); str = 1; } } 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 编译通过,我还以为自己看错了。专门做了一个Demo,结果还...