上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页
摘要: 1. circular buffer has two fundamental properties: (1): The capacity of the circular buffer is constant and set by you. The capacity doesn't change au 阅读全文
posted @ 2019-06-14 16:01 c++11 阅读(1335) 评论(0) 推荐(0) 编辑
摘要: Boost.Unordered provides the classes boost::unordered_set, boost::unordered_multiset, boost::unordered_map, and boost::unordered_multimap. These class 阅读全文
posted @ 2019-06-13 19:36 c++11 阅读(341) 评论(0) 推荐(0) 编辑
摘要: boost::array is similar to std::array, which was added to the standard library with C++11. With boost::array, an array can be created that exhibits th 阅读全文
posted @ 2019-06-13 16:02 c++11 阅读(431) 评论(0) 推荐(0) 编辑
摘要: The library Boost.Bimap is based on Boost.MultiIndex and provides a container that can be used immediately without being definded first. The container 阅读全文
posted @ 2019-06-13 15:38 c++11 阅读(737) 评论(0) 推荐(0) 编辑
摘要: Boost.MultiIndex makes it possible to define containers that support an arbitrary number of interfaces. While std::vector provides an interface that s 阅读全文
posted @ 2019-06-11 16:46 c++11 阅读(879) 评论(0) 推荐(0) 编辑
摘要: Boost.Regex provides three different functions to search for regular expressions 1. regex_match boost::regex_match() compares a string with a regular 阅读全文
posted @ 2019-06-05 18:19 c++11 阅读(450) 评论(0) 推荐(0) 编辑
摘要: Boost.Format provides a class called boost::format, wich is defined in boost/format.hpp Similar to std::printf(), a string containing special characte 阅读全文
posted @ 2019-06-05 11:58 c++11 阅读(451) 评论(0) 推荐(0) 编辑
摘要: Boost.LexicalCast provides a cast operator, boost::lexical_cast, that can covert numberes from strings to numeric types like int or double. boost::lex 阅读全文
posted @ 2019-06-05 11:15 c++11 阅读(191) 评论(0) 推荐(0) 编辑
摘要: The Boost.StringAlgorithms library provides many free-standing functions for string manipulation. 1. converting strings to uppercase The function boos 阅读全文
posted @ 2019-06-04 19:13 c++11 阅读(1100) 评论(0) 推荐(0) 编辑
摘要: Boost.ScopeExit provides the macro BOOST_SCOPE_EXIT, which can be used to define something that looks like a local function but doesn't have a name. H 阅读全文
posted @ 2019-05-29 18:50 c++11 阅读(1063) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页