我是C ++编程的新手,我尝试在终端上使用gcc在mac上进行我的第一次练习。
不幸的是,由于与iostream相关的问题,我无法编译。使用简单的程序:
#include <iostream>
int main()
{
std::cout << "hello world";
std::cout << endl;
return 0;
}
它给了我错误:
error: ‘endl’ was not declared in this scope
删除cout&lt;&lt; ENDL; line给了我这些错误:
Undefined symbols:
"___gxx_personality_v0", referenced from:
___gxx_personality_v0$non_lazy_ptr in cceBlyS2.o
"std::ios_base::Init::~Init()", referenced from:
___tcf_0 in cceBlyS2.o
"std::basic_ostream<char, std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*)", referenced from:
_main in cceBlyS2.o
"std::ios_base::Init::Init()", referenced from:
__static_initialization_and_destruction_0(int, int)in cceBlyS2.o
"std::cout", referenced from:
__ZSt4cout$non_lazy_ptr in cceBlyS2.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
很明显,iostream标头没有正确链接。我试过“&lt;”iostream.h“&gt;”和“iostream.h”没有成功。
有人有任何可以帮助我的提示吗? 谢谢!
答案 0 :(得分:17)
您需要使用std::endl;
- 整个标准库位于std
命名空间中。看起来您在命令行中使用了gcc
而不是g++
。后者自动执行正确链接C ++所需的步骤。
答案 1 :(得分:7)
endl;
属于std
命名空间
您的2个选项如下:
1)声明你的命名空间,例如
#include <iostream>
using namespace std;
int main() {
cout << "hello world";
cout << endl;
return 0;
}
或使用std::endl;
例如
std::cout << "hello world";
std::cout << std::endl;
return 0;
看哪一个适合你。我建议1)(检查我没有std::cout
,因为我已经声明了我的命名空间),因为它有助于减少每次输入std::
。
答案 2 :(得分:1)
您只需使用std::endl;
即可。或者,更好的是,使用方便的using
指令:
#include <iostream>
using namespace std;
int main()
{
cout << "hello world";
cout << endl;
return 0;
}