在哪里可以获得作为 STD 一部分包含在 VS2010 中的 boost 库列表?

发布于 2024-10-05 03:17:29 字数 48 浏览 0 评论 0原文

在哪里可以获得作为 STD 一部分包含在 VS2010 中的 boost 库列表?

Where to get a list of boost libraries included into VS2010 as part of STD?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余罪 2024-10-12 03:17:29

应该是这样: http://msdn.microsoft.com/en-us/ library/bb982198.aspx

严格来说,这些是 VS2010 中包含的 TR1 标头,我相信其中一些类型是从它们的 boost 对应项重命名的。


<array>

定义容器模板类数组和几个支持模板。


<functional> (TR1)

定义了几个帮助构造函数对象的模板,这些函数对象是定义了operator()的类型的对象。函数对象可以是函数指针,但更常见的是,该对象用于存储可在函数调用期间访问的附加信息。


<memory> (TR1)   

定义一个类、一个运算符和几个有助于分配和释放对象的模板。


<random>

定义许多随机数生成器。


<regex>

定义一个模板类来解析正则表达式,以及几个模板类和函数来搜索文本以匹配正则表达式对象。

<tuple>

定义一个模板元组类,其实例包含不同类型的对象。


<type_traits>

定义提供编译时常量的模板,这些常量提供有关其类型参数的属性的信息。


<unordered_map>

定义容器模板类unordered_map和unordered_multimap及其支持模板。


<unordered_set>

定义容器模板类unordered_multiset和unordered_set及其支持模板。


<utility> (TR1)

定义了几个可在整个标准模板库中使用的通用模板。

This should be it: http://msdn.microsoft.com/en-us/library/bb982198.aspx

Strictly speaking these are the TR1 headers that are included with VS2010, I believe some of the types were renamed from their boost counterparts.


<array>

Defines the container template class array and several supporting templates.


<functional> (TR1)

Defines several templates that help construct function objects, which are objects of a type that defines operator(). A function object can be a function pointer, but more typically, the object is used to store additional information that can be accessed during a function call.


<memory> (TR1)   

Defines a class, an operator, and several templates that help allocate and free objects.


<random>

Defines many random number generators.


<regex>

Defines a template class to parse regular expressions, and several template classes and functions to search text for matches to a regular expression object.

<tuple>

Defines a template tuple Class whose instances hold objects of varying types.


<type_traits>

Defines templates that provide compile-time constants that give information about the properties of their type arguments.


<unordered_map>

Defines the container template classes unordered_map and unordered_multimap and their supporting templates.


<unordered_set>

Defines the container template classes unordered_multiset and unordered_set and their supporting templates.


<utility> (TR1)

Defines several general templates that can be used throughout the Standard Template Library.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文