STL/Boost
C++标准库
侠士(蓝胖)
Talk is cheap,show me the code.
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
笔记:string(C++标准库)
//Boost中string函数原创 2020-10-05 10:37:34 · 206 阅读 · 0 评论 -
几种类型的for循环
//win10下,VS2017中编译 #include <iostream> using std::cout; using std::endl; #include <vector> using std::vector; int main() { int a[] = { 2,3,5,7 };//整型数组 vector<int> v = { 6,8,5,1,7 ...原创 2018-05-27 01:53:54 · 1248 阅读 · 0 评论 -
C++使用Boost库处理XML文件(1)
所用库为boost_1_62_0,IDE为Visual Studio 2013,win7/8系统。导入头文件#include "boost/property_tree/ptree.hpp"//ptree #include "boost/property_tree/xml_parser.hpp"//read,write #include "boost/foreach.hpp"//BOOST_FORE...原创 2018-06-10 13:49:13 · 2062 阅读 · 0 评论 -
C++使用Boost库处理XML文件(2)
#include <iostream> using std::cout; using std::endl; using std::string; #include <boost/property_tree/ptree.hpp>//ptree using boost::property_tree::ptree; #include <boost/property_tre...原创 2018-06-10 13:49:21 · 506 阅读 · 0 评论 -
C++使用Boost库处理XML文件(3)
<?xml version="1.0" encoding="utf-8"?> <localinfo> <player_info> <userInfo account="1990wyb" isLastLogin="0" isSave="0" pass="">1<原创 2018-06-10 13:49:28 · 1552 阅读 · 0 评论
分享