我在尝试使用 MS VC 15.3.1 编译一个简单的应用程序时发现了一个奇怪的行为(可能是一个问题)(在应用 VC 2017 升级 3 之后):
#include <iostream>
#include <algorithm>
#include <string>
// compiles if commenting out the line below
#include <vector>
#include <list>
class A
{
std::string s;
public:
A(const std::string& str) : s(str)
{
}
A(A&& other)
{
// compiles if changing std::swap<std::string>() to std::swap()
std::swap<std::string>(s, other.s);
}
};
int main(int argc, char *argv[])
{
return 0;
}
编译器发出错误:
1>d:\program files (x86)\microsoft visual studio\2017\enterprise\vc\tools\msvc\14.11.25503\include\vector(2131):
error C2039: '_Alloc': is not a member of 'std::basic_string<char,std::char_traits<char>,std::allocator<char>>'
此代码在 VC 15.2、VS2015 和 VS2013 工具集中编译时没有任何问题。