摘要:
1、下载boost 1.72.0,自Boost1.73后需要匹配C++14版本的编译平台了,对于VS2015下载1.73.0之前版本的boost库包均可 Boost Version History 2、解压后编译 打开下图cmd 进入解压目录中运行bootstrap.bat(进入到目录可以输入cd 阅读全文
摘要:
字符串是否相等(大小写敏感) 两种方法:strcmp比较、转string再比较 #include <string.h> //for C strcmp #include <stdio.h> //for C printf #include <string> //for C++ string int ma 阅读全文