1.正斜杠,一般就叫做斜杠;符号为   “/”;

反斜杠     符号为    “\”

2.在Unix/Linux 网络地址中,路径的分隔采用正斜杠"/",比如"/home/hutaow";

而在Windows中,路径分隔采用反斜杠"\",比如"C:\Windows\System"。

3. 有时我们会看到这样的路径写法,"C:\\Windows\\System",也就是用两个反斜杠来分隔路径,这种写法在网络应用或编程中经常看到,事实上,上面这个路径可以    用"C:/Windows/System"来代替,不会出错。但是如果写成了"C:\Windows\System",那就可能会出现各种奇怪的错误了

4.

5. args << QLatin1String ( "-collectionFile" )

<<QLibraryInfo::location(QLibraryInfo::ExamplesPath)  //QT源码examples的路径
+QLatin1String("\\help\\simpletextviewer\\documentation\\simpletextviewer.qhc")
<<QLatin1String("-enableRemoteControl");

E: \work\QT482_Creator250_add1_1_11\qt4.8.2\examples\\help\\simpletextviewer\\documentation\\simpletextviewer.qhc

args << QLatin1String ( "-collectionFile" )

<<QLibraryInfo::location(QLibraryInfo::ExamplesPath)
+QLatin1String("/help/simpletextviewer/documentation/simpletextviewer.qhc")
<<QLatin1String("-enableRemoteControl"); 
 E:\work\QT482_Creator250_add1_1_11\qt4.8.2\examples/help/simpletextviewer/documentation/simpletextviewer.qhc

在我的程序中运行的结果是一样的。

6.在应用程序中,资源是通过:/路径前缀识别的,他可以向其他的任何文件一样通过QFile读取。