书栈网 · BookStack 本次搜索耗时 0.037 秒,为您找到 1915 个相关结果.
  • 6.3. 同步

    1434 2019-12-10 《Boost C++ 库》
    6.3. 同步 6.3. 同步 虽然多线程的使用可以提高应用程序的性能,但也增加了复杂性。 如果使用线程在同一时间执行几个函数,访问共享资源时必须相应地同步。 一旦应用达到了一定规模,这涉及相当一些工作。 本段介绍了Boost.Thread提供同步线程的类。 #include <boost/thread.hpp> #include <...
  • 7.4. 网络编程

    2127 2019-12-10 《Boost C++ 库》
    7.4. 网络编程 7.4. 网络编程 虽然 Boost.Asio 是一个可以异步处理任何种类数据的库,但是它主要被用于网络编程。 这是由于,事实上 Boost.Asio 在加入其它 I/O 对象之前很久就已经支持网络功能了。 网络功能是异步处理的一个很好的例子,因为通过网络进行数据传输可能会需要较长时间,从而不能直接获得确认或错误条件。 Boos...
  • JSON Support

    JSON Support Querying nested collection Example 1: Unnesting a nested collection Example 2: Unnesting in existential subquery JSON Support SQL plugin supports JSON by followi...
  • JSON Support

    JSON Support Querying nested collection Example 1: Unnesting a nested collection Example 2: Unnesting in existential subquery JSON Support SQL plugin supports JSON by followi...
  • JSON Support

    JSON Support Querying nested collection Example 1: Unnesting a nested collection Example 2: Unnesting in existential subquery JSON Support SQL plugin supports JSON by followi...
  • JSON Support

    JSON Support Querying nested collection Example 1: Unnesting a nested collection Example 2: Unnesting in existential subquery JSON Support SQL plugin supports JSON by followi...
  • JSON Support

    JSON Support Querying nested collection Example 1: Unnesting a nested collection Example 2: Unnesting in existential subquery JSON Support SQL plugin supports JSON by followi...
  • Accept connections

    Accept connections Accept connections Server needs to accept clients’ connections. First server creates an acceptor : ...... boost :: asio :: io_context io_context ; ...
  • Synchronous read/write operations

    Synchronous read/write operations Synchronous read/write operations Once the connection is established, the client and server can communicate with each other. Like classical UN...
  • 2.5. 共享指针

    1522 2019-12-10 《Boost C++ 库》
    2.5. 共享指针 2.5. 共享指针 这是使用率最高的智能指针,但是 C++ 标准的第一版中缺少这种指针。 它已经作为技术报告1(TR 1)的一部分被添加到标准里了。 如果开发环境支持的话,可以使用 memory 中定义的 std::shared_ptr 。 在 Boost C++ 库里,这个智能指针命名为 boost::shared_ptr ,...