书栈网 · BookStack 本次搜索耗时 0.026 秒,为您找到 1948 个相关结果.
  • 2.3. 作用域指针

    2219 2019-12-10 《Boost C++ 库》
    2.3. 作用域指针 2.3. 作用域指针 一个作用域指针独占一个动态分配的对象。 对应的类名为 boost::scoped_ptr ,它的定义在 boost/scoped_ptr.hpp 中。 不像 std::auto_ptr ,一个作用域指针不能传递它所包含的对象的所有权到另一个作用域指针。 一旦用一个地址来初始化,这个动态分配的对象将在析构阶...
  • 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...
  • 12.3. 语法

    1445 2019-12-10 《Boost C++ 库》
    12.3. 语法 12.3. 语法 继上一节中以 EBNF 为 JSON 格式定义了相关规则后,现在要将这些规则与 Boost.Spirit 一起使用。 Boost.Spirit 实际上允许以 C++ 代码来定义 EBNF 规则,方法是重载各个由 EBNF 使用的不同操作符。 请注意,EBNF 规则需要稍作修改,才能创建出合法的 C++ 代码。 在...
  • Other Languages

    Python Native Dependencies Dependencies Installation Coding Example C++ Native Interfaces Dependencies Installation Build Thrift on MacOS Build Thrift on Linux Build Thrift ...
  • 6.2. 线程管理

    1852 2019-12-10 《Boost C++ 库》
    6.2. 线程管理 6.2. 线程管理 在这个库最重要的一个类就是 boost::thread ,它是在 boost/thread.hpp 里定义的,用来创建一个新线程。下面的示例来说明如何运用它。 #include <boost/thread.hpp> #include <iostream>   void wait ( ...
  • 9.4. 文件流

    1146 2019-12-10 《Boost C++ 库》
    9.4. 文件流 9.4. 文件流 C++ 标准在 fstream 头文件中定义了几个文件流。 这些流不能接受 boost::filesystem::path 类型的参数。 由于 Boost.Filesystem 库很有可能被包含在 C++ 标准的 Technical Report 2 中,所以这些文件流将通过相应的构造函数来进行扩展。 为了当前...