What are some convincing arguments to upgrade from Visual Studio 6?

后端 未结 14 1821
误落风尘
误落风尘 2020-12-16 01:19

I have a client who is still using Visual Studio 6 for building production systems. They write multi-threaded systems that use STL and run on mutli-processor machines.

14条回答
  •  独厮守ぢ
    2020-12-16 01:33

    VS6 does not compile code according to the current C/C++ standard. For example,

    • it has incorrect (outdated) scoping rules for loops. At least one MSFT SDK have been updated now with code that expects the correct semantics, so the SDK won't even compile with VS6 any more.
    • It has trouble being able to compile all but the most trivial template constructs.
    • It will compile some template constructs that have been declared illegal in recent standards updates (because the constructs don't actually do what normal users expect).

提交回复
热议问题