- 主题:请问Visual c++前面的 9.0 11 14的编号都有什么依据呢?
请问Visual c++前面的 9.0 11 14的编号都有什么依据呢?
Visual C++ 9.0 (Visual Studio 2008 or Visual C++ 2008)
Visual C++ 11.0 (Visual Studio 2012)
Visual C++ 14.0 (Visual Studio 2015)
C++都有多少个不同的版本呢?似乎很多
C语言版本数的话就会比较好,当前主要是C89 C99版本。
--
FROM 27.151.177.*
9 11 14这些是对应的编译器的版本号,也就是cl.exe打出来的版本号。
C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional>cl
Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30133 for x64
Copyright (C) Microsoft Corporation. All rights reserved.
C++版本号,自己搜搜就有:
The C++ programming language was initially standardized in 1998 as ISO/IEC 14882:1998, which was then amended by the C++03, C++11, C++14, and C++17 standards. The current C++20 standard supersedes these with new features and an enlarged standard library.
Since 2012, C++ has been on a three-year release schedule[14] with C++23 as the next planned standard.
--
FROM 114.240.244.*
是否可以理解Visual c++11、14对应着C++11, C++14呢?
9.0这个编号又是怎么回事呢?谢谢。
【 在 z16166 的大作中提到: 】
: 9 11 14这些是对应的编译器的版本号,也就是cl.exe打出来的版本号。
: C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional>cl
: Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30133 for x64
: ...................
--
修改:chen1729 FROM 27.151.177.*
FROM 27.151.177.*
这是三条线:
1、VC++的市场营销版本线。以年份命名。
2、VC++的内部版本线(可以认为是面向技术人员的),以数字递增命名。
3、C++标准的版本线,以年份的低2位数字命名。这个跟VC++的版本号是两码事。
有人早就编纂好了,找个梯子看看就行了
https://zh.wikipedia.org/wiki/Microsoft_Visual_C%2B%2B
【 在 chen1729 的大作中提到: 】
: 是否可以理解Visual c++11、14对应着C++11, C++14呢?
: 9.0这个编号又是怎么回事呢?谢谢。
:
: ...................
--
修改:z16166 FROM 114.240.244.*
FROM 114.240.244.*
好的,明白。
【 在 z16166 的大作中提到: 】
: 这是三条线:
: 1、VC++的市场营销版本线。以年份命名。
: 2、VC++的内部版本线(可以认为是面向技术人员的),以数字递增命名。
: ...................
--
FROM 120.33.184.*