我有两个烦人的问题:
1)hints里看不到任何方法,比如写std::后应该能看到std命名空间方法等等,但是没有动作
2)在这种情况下我不能使用对象的方法:
vector<string> somevector;
somevector[0].size(); //compilation error
string& str = somevector[0];
str.size(); //now it's working fine..
我 100% 确定我更改了 ADT 设置中的某些内容,但我不知道它是什么..