错误 C2065:“cout":未声明的标识符

error C2065: #39;cout#39; : undeclared identifier(错误 C2065:“cout:未声明的标识符)
本文介绍了错误 C2065:“cout":未声明的标识符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在处理我的编程任务的驱动程序"部分,但我不断收到这个荒谬的错误:

I am working on the 'driver' part of my programing assignment and i keep getting this absurd error:

错误 C2065:'cout':未声明的标识符

error C2065: 'cout' : undeclared identifier

我什至尝试过使用 std::cout 但我收到另一个错误消息:IntelliSense: namespace "std" has no member "cout" 当我有声明 using namespace std,包括 iostream + 我什至尝试使用 ostream

I have even tried using the std::cout but i get another error that says: IntelliSense: namespace "std" has no member "cout" when i have declared using namespace std, included iostream + i even tried to use ostream

我知道这是一个标准的菜鸟问题,但这让我很难过,而且我是个新手(意思是:我以前编程过......)

I know it's a standard noob question but this has stumped me and I'm a novice (meaning: I've programed before...)

#include <iostream>
using namespace std;

int main () {
    cout << "hey" << endl;
 return 0;
}

我使用的是 Visual Studio 2010 并运行 Windows 7.所有 .h 文件都有使用命名空间 std"并包括 iostream 和 ostream.

I'm using Visual Studio 2010 and running Windows 7. All of the .h files have "using namespace std" and include iostream and ostream.

推荐答案

在 Visual Studio 中,您必须 #include "stdafx.h" 并且是 cpp 文件的第一个包含. 例如:

In Visual Studio you must #include "stdafx.h" and be the first include of the cpp file. For instance:

这些不起作用.

#include <iostream>
using namespace std;
int main () {
    cout << "hey" << endl;
    return 0;
}




#include <iostream>
#include "stdafx.h"
using namespace std;
int main () {
    cout << "hey" << endl;
    return 0;
}

这就行了.

#include "stdafx.h"
#include <iostream>
using namespace std;
int main () {
    cout << "hey" << endl;
    return 0;
}

这里有一个关于 stdafx.h 标头功能的很好的答案.

这篇关于错误 C2065:“cout":未声明的标识符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do compilers treat variable length arrays(编译器如何处理变长数组)
Deduce template argument from std::function call signature(从 std::function 调用签名推导出模板参数)
check if member exists using enable_if(使用 enable_if 检查成员是否存在)
Standard Library Containers with additional optional template parameters?(具有附加可选模板参数的标准库容器?)
Uses of a C++ Arithmetic Promotion Header(C++ 算术提升标头的使用)
Parameter pack must be at the end of the parameter list... When and why?(参数包必须位于参数列表的末尾...何时以及为什么?)