Visual Studio 2008 with c++11(带有 C++11 的 Visual Studio 2008)
问题描述
我能否以某种方式使 Visual C++ 2008 拥有 C++11 库并使用 C++11 标准允许的所有优点?
Can I somehow make Visual C++ 2008 to have C++11 library and use all the good things C++11 standard allows?
推荐答案
简而言之,这是不可能的.VS2008 没有 C++11 支持,替换库会导致混乱.
In short words, it's impossible. VS2008 has no C++11 support and replacing the libraries would lead to chaos.
总而言之,你也许可以做点什么:
In long words, you maybe could do something:
- 使用其他编译器:C++ 编译器支持(更新链接)
- 您可以升级 Visual Studio,但即使是 MSVC12(visual studio 2013)也不支持所有 C++11 标准.
- 您可以将英特尔编译器嵌入您的视觉工作室.但英特尔也没有完全支持 C++11,但比 MSVC 多.这里 (更新的链接现在提供了一个一般性的描述)一个小的如何嵌入英特尔编译器.
- 更新:clang 现在也可以与 Visual Studio 一起使用,请参阅 这里.
- 更新: 正如 Melebius 在评论中所说,MSVC19 (VS2015) 终于支持大部分 C++11 标准...... 支持 C++11/14/17 特性(现代 C++)
- Use another compiler: C++ compiler support (Updated Link)
- You could upgrade your visual studio, but even MSVC12 (visual studio 2013) is not supporting all of C++11 standard.
- You could embed the Intel compiler into your visual studio. But also Intel is not fully supporting C++11, nevertheless more than MSVC. Here (Updated link now provides a general description) a small howto embed the Intel compiler.
- Update: clang is now also able to be used with visual studio, see here.
- Update: As Melebius stated in the comments, MSVC19 (VS2015) finally supports most of the C++11 standard... Support For C++11/14/17 Features (Modern C++)
这篇关于带有 C++11 的 Visual Studio 2008的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:带有 C++11 的 Visual Studio 2008


- STL 中有 dereference_iterator 吗? 2022-01-01
- C++ 协变模板 2021-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 静态初始化顺序失败 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 从python回调到c++的选项 2022-11-16
- Stroustrup 的 Simple_window.h 2022-01-01