书栈网 · BookStack 本次搜索耗时 0.044 秒,为您找到 1915 个相关结果.
  • 9.4 使用Boost.Python构建C++和Python项目

    9.4 使用Boost.Python构建C++和Python项目 准备工作 具体实施 工作原理 更多信息 9.4 使用Boost.Python构建C++和Python项目 NOTE :此示例代码可以在 https://github.com/dev-cafe/cmake-cookbook/tree/v1.0/chapter-9/recipe-0...
  • 5.6. 格式化输出库 Boost.Format

    1645 2019-12-10 《Boost C++ 库》
    5.6. 格式化输出库 Boost.Format 5.6. 格式化输出库 Boost.Format Boost.Format 库可以作为定义在文件 cstdio 中的函数 std::printf() 的替代。 std::printf() 函数最初出现在 C 标准中,提供格式化数据输出功能, 但是它既不是类型安全的有不能扩展。 因此在 C++ ...
  • 5.5. 词汇分割器库 Boost.Tokenizer

    1393 2019-12-10 《Boost C++ 库》
    5.5. 词汇分割器库 Boost.Tokenizer 5.5. 词汇分割器库 Boost.Tokenizer Boost.Tokenizer 库可以在指定某个字符为分隔符后,遍历字符串的部分表达式。 #include <boost/tokenizer.hpp> #include <string> #include <i...
  • 8.2 使用超级构建管理依赖项:Ⅰ.Boost库

    8.2 使用超级构建管理依赖项:Ⅰ.Boost库 具体实施 工作原理 8.2 使用超级构建管理依赖项:Ⅰ.Boost库 NOTE :此示例代码可以在 https://github.com/dev-cafe/cmake-cookbook/tree/v1.0/chapter-8/recipe-02 中找到,其中有一个C++示例。该示例在CMake ...
  • 5.3. 字符串算法库 Boost.StringAlgorithms

    2127 2019-12-10 《Boost C++ 库》
    5.3. 字符串算法库 Boost.StringAlgorithms 5.3. 字符串算法库 Boost.StringAlgorithms Boost C++ 字符串算法库 Boost.StringAlgorithms 提供了很多字符串操作函数。 字符串的类型可以是 std::string , std::wstring 或任何其他模板类 std:...
  • 14.2. 元组

    847 2019-12-10 《Boost C++ 库》
    14.2. 元组 14.2. 元组 Boost.Tuple 库提供了一个更一般的版本的 std::pair —— boost::tuple 。 不过 std::pair 只能储存两个值而已, boost::tuple 则给了我们更多的选择。 #include <boost/tuple/tuple.hpp> #include ...
  • 4.3. 连接 Connections

    1311 2019-12-10 《Boost C++ 库》
    4.3. 连接 Connections 4.3. 连接 Connections 函数可以通过由 boost::signal 所提供的 connect() 和 disconnect() 方法的帮助来进行管理。 由于 connect() 会返回一个类型为 boost::signals::connection 的值,它们可以通过其它方法来管理。 ...
  • 10.3. 位置无关的时间

    1160 2019-12-10 《Boost C++ 库》
    10.3. 位置无关的时间 10.3. 位置无关的时间 boost::gregorian::date 用于创建日期,boost::posix_time::ptime 则用于定义一个位置无关的时间。 boost::posix_time::ptime 会存取 boost::gregorian::date 且额外保存一个时间。 为了使用 boos...
  • 10.4. 位置相关的时间

    1243 2019-12-10 《Boost C++ 库》
    10.4. 位置相关的时间 10.4. 位置相关的时间 和前一节所介绍的位置无关时间不一样,位置相关时间是要考虑时区的。 为此,Boost.DateTime 提供了 boost::local_time::local_date_time 类,它定义于 boost/date_time/local_time/local_time.hpp , 并使用 bo...
  • Connect server

    Connect server Connect server The client can use the endpoints returned by DNS query to connect server application. The following is an example: #include <boost/asio.hpp>...