2

我有一个问题,示例代码将在代码块环境中编译和运行,但不会在 Visual Studio 2012 中编译

list<string> names;
names.push_back("Mary");
names.push_back("Zach");
names.push_back("Elizabeth");
list<string>::iterator iter = names.begin();
while (iter != names.end()) {
    cout << *iter << endl;  // This dereference causes compile error C2679
    ++iter;
}

导致以下编译器错误

1>chapter_a0602.cpp(20): error C2679: binary '<<' : no operator found which takes a
right-hand operand of type 'std::basic_string<_Elem,_Traits,_Alloc>' (or there is no
acceptable conversion)
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]

当我将字符串列表更改为整数列表时,代码会在 VS2012 中编译并运行。

当我还将取消引用更改为以下内容时,它会编译

cout << *the_iter->c_str() << endl;

但是我在代码后面还有另外两个取消引用问题

cout << "first item: " << names.front() << endl;
cout << "last item: "  << names.back() << endl;

我真的不明白为什么这些错误取决于编译器。

对格式感到抱歉,但我无法让它接受代码。

4

2 回答 2

4

添加以下包含指令:

#include <string>

因为那是operator<<(std::ostream&, std::string&)定义的地方。

注意VS2012 支持基于范围的 for 语句,它将输出循环转换为:

for (auto const& name: names) std::cout << name << std::endl;
于 2013-08-21T07:58:19.467 回答
1

在标题ostream operator<<(ostream& os, const string& str)中定义string

您可能只是忘记包含它以产生这种错误。

您应该将其包含在文件的顶部:

#include <string>

活生生的例子

于 2013-08-21T08:03:24.333 回答