简体   繁体   English

当我使用与C ++ 11兼容的编译器编译boost 1.48 \\ 1.47代码时,我最终会得到诸如share_ptr之类的std实现吗?

[英]When I compile boost 1.48\1.47 code with C++11 compatible compiler do I end up with std implementation of stuff like share_ptr?

When I compile boost 1.48\\1.47 code with C++11 compatible compiler do I end up with std implementation of stuff like share_ptr, threads etc? 当我使用与C ++ 11兼容的编译器编译boost 1.48 \\ 1.47代码时,我最终会得到诸如share_ptr,线程等东西的std实现吗? If not what are boost views on that, will it ever compile when possible? 如果不是,对此有什么增强意见,是否会在可能的情况下进行编译?

No, you will end up with the boost implementation of those components. 不,您将最终实现这些组件的增强实现。 The interfaces are quite similar to the standard versions, but not always identical. 接口与标准版本非常相似,但并不总是相同。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何将 C++11 代码编译为 webassembly? - How do I compile C++11 code to webassembly? 为什么支持 C++11 及更高版本的 C++ 编译器需要 Boost.SmartPtr? - Why do I need Boost.SmartPtr for the C++ compiler that supports C++11 and later? 使用C ++ 14编译器而不是C ++ 11编译时,我会获得性能提升吗? - Will I get a performance boost when compiling with a C++14 compiler instead of C++11? 如何在NetBeans IDE的编译器选项中添加-std = c ++ 11? - how do I add -std=c++11 to the compiler options in my NetBeans IDE? boost :: thread断言的share_ptr失败 - share_ptr of boost::thread assertion fail 将C ++ 11 std :: thread移植到boost :: thread编译问题 - Porting C++11 std::thread to boost::thread compile issues 如何获得 CMake 工具以使用 C++11(或更高版本)功能在 Visual Studio Code 中编译程序? - How do I get CMake Tools to compile programs in Visual Studio Code with C++11 (or higher) features? 如何使用移动构造函数获取g ++来编译c ++ 11代码? - How do I get g++ to compile c++11 code with a move constructor? 如何避免每次编译时都必须键入 -std=c++11 - How do I avoid having to type -std=c++11 each time when compiling 复制向量时会发生什么 <boost::share_ptr> 到另一个向量 - what happens when you copy vector<boost::share_ptr> to another vector
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM