当前位置: 技术问答>linux和unix
刚学linux,请教个string问题
来源: 互联网 发布时间:2015-11-13
本文导语: //test.cpp #include int main() { string s; return 0; } [xxxxx]$ gcc test.cpp `string' undeclared 为什么?应该怎么用呢? | #include #include using namespace std; int main() { string s; retu...
//test.cpp
#include
int main()
{
string s;
return 0;
}
[xxxxx]$ gcc test.cpp
`string' undeclared
为什么?应该怎么用呢?
#include
int main()
{
string s;
return 0;
}
[xxxxx]$ gcc test.cpp
`string' undeclared
为什么?应该怎么用呢?
|
#include
#include
using namespace std;
int main()
{
string s;
return 0;
}
[xxxxx]$ g++ test.cpp
#include
using namespace std;
int main()
{
string s;
return 0;
}
[xxxxx]$ g++ test.cpp