在C++中包含头文件时,有什么区别......
1)包括.h与不包括.h在<>中包裹它时?
#include <iostream> vs. #include <iostream.h>
Run Code Online (Sandbox Code Playgroud)
2)用双引号包装标题名称而不是用<>符号包装它?
#include <iostream.h> vs. #include "iostream.h"
Run Code Online (Sandbox Code Playgroud)
提前致谢!