上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页
摘要: To create a date, use the class boost::gregorian::date 1. date boost::gregorian::date provides several constructors to create dates. The most basic co 阅读全文
posted @ 2019-08-05 12:50 c++11 阅读(726) 评论(0) 推荐(0) 编辑
摘要: The library Boost.Filesystem makes it easy to work with files and directories. Paths Paths can be build by passing a string to the constructor of boos 阅读全文
posted @ 2019-08-03 09:56 c++11 阅读(1817) 评论(0) 推荐(0) 编辑
摘要: Boost.IOStreams provides numerous implementations of the two concepts. Devices which describes data sources and sinks, and stream which describes an i 阅读全文
posted @ 2019-08-01 16:52 c++11 阅读(1095) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(1794) 评论(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 阅读(161) 评论(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 阅读(303) 评论(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 阅读(826) 评论(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 阅读(920) 评论(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 阅读(472) 评论(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 阅读(358) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页