书栈网 · BookStack 本次搜索耗时 0.027 秒,为您找到 1632 个相关结果.
  • 23. Boost.Any

    Chapter 23. Boost.Any Chapter 23. Boost.Any Strongly typed languages, such as C++, require that each variable have a specific type that defines what kind of information it can ...
  • 18. Boost.Intrusive

    Chapter 18. Boost.Intrusive Chapter 18. Boost.Intrusive Boost.Intrusive is a library especially suited for use in high performance programs. The library provides tools to crea...
  • 8. Boost.Regex

    Chapter 8. Boost.Regex Note Chapter 8. Boost.Regex Boost.Regex allows you to use regular expressions in C++. As the library is part of the standard library since C++11, you d...
  • 15.2. Boost.System

    1821 2019-12-10 《Boost C++ 库》
    15.2. Boost.System 15.2. Boost.System Boost.System 是一个定义了四个类的小型库,用以识别错误。 boost::system::error_code 是一个最基本的类,用于代表某个特定操作系统的异常。 由于操作系统通常枚举异常,boost::system::error_code 中以变量的形式保存...
  • 14.4. Boost.Variant

    1715 2019-12-10 《Boost C++ 库》
    14.4. Boost.Variant 14.4. Boost.Variant Boost.Variant 和 Boost.Any 之间的不同点在于 Boost.Any 可以被视为任意的类型, 而 Boost.Variant 只能被视为固定数量的类型。 让我们来看下面这个例子。 #include <boost/variant.hpp> ...
  • 13.4. Boost.MultiIndex

    1729 2019-12-10 《Boost C++ 库》
    13.4. Boost.MultiIndex 13.4. Boost.MultiIndex Boost.MultiIndex 比我们之前介绍的任何库都要复杂。 不像 Boost.Array 和 Boost.Unordered 为我们提供了可以直接使用的容器, Boost.MultiIndex 让我们可以自定义新的容器。 跟 C++ 标准中的容器不同...
  • 69. Boost.Utility

    Chapter 69. Boost.Utility Note Chapter 69. Boost.Utility The library Boost.Utility is a conglomeration of miscellaneous, useful classes and functions that are too small to ju...
  • 66. Boost.Flyweight

    Chapter 66. Boost.Flyweight Exercise Chapter 66. Boost.Flyweight Boost.Flyweight is a library that makes it easy to use the design pattern of the same name. Flyweight helps s...
  • 65. Boost.Uuid

    Chapter 65. Boost.Uuid Chapter 65. Boost.Uuid Boost.Uuid provides generators for UUIDs. UUIDs are universally unique identifiers that don’t depend on a central coordinating in...
  • 49. Boost.EnableIf

    Chapter 49. Boost.EnableIf Exercise Chapter 49. Boost.EnableIf Boost.EnableIf makes it possible to disable overloaded function templates or specialized class templates. Disab...