书栈网 · BookStack 本次搜索耗时 0.030 秒,为您找到 1915 个相关结果.
  • 45. Boost.Atomic

    Chapter 45. Boost.Atomic Note Tip Chapter 45. Boost.Atomic Boost.Atomic provides the class boost::atomic , which can be used to create atomic variables. They are called atom...
  • 38. Boost.Timer

    Chapter 38. Boost.Timer Chapter 38. Boost.Timer Boost.Timer provides clocks to measure code performance. At first, it may seem like this library competes with Boost.Chrono. Ho...
  • 35. Boost.Filesystem

    Chapter 35. Boost.Filesystem Chapter 35. Boost.Filesystem The library Boost.Filesystem makes it easy to work with files and directories. It provides a class called boost::file...
  • 31. Boost.Graph

    Chapter 31. Boost.Graph Chapter 31. Boost.Graph Boost.Graph provides tools to work with graphs. Graphs are two-dimensional point clouds with any number of lines between points...
  • 29. Boost.Algorithm

    Chapter 29. Boost.Algorithm Exercise Chapter 29. Boost.Algorithm Boost.Algorithm provides algorithms that complement the algorithms from the standard library. Unlike Boost.Ra...
  • 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

    2298 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

    1966 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> ...