关于“\”和“/”的使用

1、加载图片路径

this->setStyleSheet("border-image: url(e:\Test\image\red.png);");

    错误!

this->setStyleSheet("border-image: url(e:\\Test\\image\\red.png);");

    错误!

this->setStyleSheet("border-image: url(e:/Test/image/red.png);");

    正确!

2、字符串换行

QString str("012\
            3456\
            789");
QString str1("012"
             "345"
             "678"
             "9");
            
qDebug()<<"str =="<<str;
qDebug()<<"str1 =="<<str1;

    运行结果:

        str == 012            3456            789

        str1 == 0123456789

3、其他

QString str("hello \"world\"!");
QString str1("hello 'world'!");
QString str2("hello \'world\'!");
QString str3("hello \\world\\!");

qDebug()<<"str =="<<str;
qDebug()<<"str1 =="<<str1;
qDebug()<<"str2 =="<<str2;
qDebug()<<"str3 =="<<str3;

    运行结果:

        str == hello "world"!

        str1 == hello 'world'!

        str2 == hello 'world'!

        str3 == hello \world\!


你可能感兴趣的:(关于“\”和“/”的使用)