在使用 #include "math.h" 和 #include <math.h>时,引号 与尖括号的区别如下
此时math.h_1 在工程文件中 math.h_2 在系统文件中
使用 "" 时,优先搜索工程文件所在目录,然后搜索编译器文件所在目录
使用<>时,与上面相反。
在使用 #include "math.h" 和 #include <math.h>时,引号 与尖括号的区别如下
此时math.h_1 在工程文件中 math.h_2 在系统文件中
使用 "" 时,优先搜索工程文件所在目录,然后搜索编译器文件所在目录
使用<>时,与上面相反。
转载于:https://www.cnblogs.com/yyx001000000001010101100101/p/5184519.html