c++用法
boost::program_options
1 | po::options_description desc("Allowed options"); |
help,h
之间不能有空格,否则识别不出-h
参数
g++使用include头文件目录时报错
1 | $ g++.exe -I "C:\Program Files\boost\" hello.cpp |
需要将\
改为\\
或者/
1 | g++.exe -I "C:/Program Files/boost/" hello.cpp |
vscode中错误检查
Ctrl+Alt+p:选择c/c++编辑配置
=>包含路径(includePath)
=>换行添加
然后在.vscode/tasks.json
中添加includePath,就能使用F5运行项目
1 | { |
vscode的intellisense找不到头文件
删除文件夹下的.vscode
后,将头文件目录放到includePath下面