07 2019 档案

摘要:Shared Memory Shared memory is typically the fastest form of interprocess communicatioin. It provides a memory area that is shared between processes. 阅读全文
posted @ 2019-07-31 11:57 c++11 阅读(2039) 评论(0) 推荐(0)
摘要:A library such as Boost.Asio is typically used to achieve greater efficiency. With no need to wait for an operation to finish, a program can perform o 阅读全文
posted @ 2019-07-29 16:18 c++11 阅读(182) 评论(0) 推荐(0)
摘要:Boost.Asio defines boost::asio::io_service, a single class fro an I/O service object. Every program based on Boost.Asio uses an object of type boost:: 阅读全文
posted @ 2019-07-17 15:30 c++11 阅读(356) 评论(0) 推荐(0)
摘要:Boost Graph provides tools to work with graphs. Graphas are two-dimensional point clouds with any number of lines between ponts. Vertices and Edges 1 阅读全文
posted @ 2019-07-15 15:55 c++11 阅读(933) 评论(0) 推荐(0)
摘要:1.Algorithms Boost.Range is library that, on the first sight, provides algorithms similar to those provided by the standard library. For example, you 阅读全文
posted @ 2019-07-12 19:22 c++11 阅读(1002) 评论(0) 推荐(0)
摘要:BOost Algorithm provides algorithms that complement the algorithms from the standard library. Unlike Boost Range, Boost Algorithm doesn't introduce ne 阅读全文
posted @ 2019-07-05 16:23 c++11 阅读(489) 评论(0) 推荐(0)
摘要:boost::compressed_pair behaves like std::pair. However, if one or both template parameters are empty classes, boost::compressed_pair consumes less mem 阅读全文
posted @ 2019-07-02 19:34 c++11 阅读(391) 评论(0) 推荐(0)
摘要:boost::logic::tribool is similar to bool. However, while bool can distinguish two states, boost::logic::tribool handles three. 输出为: true indeterminate 阅读全文
posted @ 2019-07-02 19:25 c++11 阅读(491) 评论(0) 推荐(0)
摘要:Boost PropertyTree provides a tree structure to store key/value pairs. Tree structures means that a trunk exists with numerous branches that have nume 阅读全文
posted @ 2019-07-01 19:39 c++11 阅读(2711) 评论(0) 推荐(0)