Cout和endl错误

时间:2013-10-12 07:12:21

标签: c++ io compiler-errors

我在下面列出了我的代码。我得到了很多错误,说cout和endl没有在这个范围内声明。我不知道我做错了什么或如何强迫班级认出cout?我希望我正确地解释我的问题。如果我注释掉方法(不是构造函数),它就可以工作。我可能只是在这里犯了一个新手错误 - 请帮助。

using namespace std;

class SignatureDemo{
public:
    SignatureDemo (int val):m_Val(val){}
    void demo(int n){
        cout<<++m_Val<<"\tdemo(int)"<<endl;
    }
    void demo(int n)const{
        cout<<m_Val<<"\tdemo(int) const"<<endl;
    }
    void demo(short s){
        cout<<++m_Val<<"\tdemo(short)"<<endl;
    }
    void demo(float f){
        cout<<++m_Val<<"\tdemo(float)"<<endl;
    }
    void demo(float f) const{
        cout<<m_Val<<"\tdemo(float) const"<<endl;
    }
    void demo(double d){
        cout<<++m_Val<<"\tdemo(double)"<<endl;
    }

private:
    int m_Val;
};



int main()
{
    SignatureDemo sd(5);
    return 0;
}

1 个答案:

答案 0 :(得分:3)

编译器需要首先知道在哪里找到std::cout。您只需要包含正确的头文件:

#include <iostream>

我建议你不要使用using指令来污染命名空间。相反,要么学会使用std::为std类/对象添加前缀,要么使用特定的using指令:

using std::cout;
using std::endl;