视觉工作室cout<<不工作

时间:2016-12-04 13:32:09

标签: c++ cout

我目前正在尝试学习C ++的基础知识。我正在使用视觉工作室,并发现了一个奇怪的问题:

#include "stdafx.h"
#include <iostream>

using namespace std;


int main()
{
    string name = "Example name";
    cout << "Hello " << name << endl;

    int pause;
    cin >> pause;
    return 0;
}

我无法使用&#34;&lt;&lt;&#34;尝试输出我的字符串时两次。它显示第二个&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;并且不会让我编译。任何答案?我应该使用另一个IDE吗?

1 个答案:

答案 0 :(得分:2)

您忘记了为#include <string>

定义operator<<的{​​{1}}