This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / C++ 有没有string类型?我查帮助有,但当我用C++ 编译器编译时,显示错误没有这种类型。请指点。C++ 有没有string类型?我查帮助有,但当我用C++ 编译器编译时,显示错误没有这种类型。请指点。我用的不是VC++or C++ builder, 我从网上下载了一个C++ 编译器。
-volunteer(angel);
2004-11-25
{151}
(#1999007@0)
-
看看相应的头文件目录有没有string
-oasis(oasis);
2004-11-25
(#1999023@0)
-
谢谢回复。有一个文件string.h, 我把它包含进我的源程序中,但无济于事 。
-volunteer(angel);
2004-11-25
(#1999032@0)
-
Try CString
-flyingsnail(Flying Snail);
2004-11-25
(#1999056@0)
-
我记得CString 是VC++ 的类,C++ 中应该没有这个类
-volunteer(angel);
2004-11-25
(#1999070@0)
-
看看这个文件里面有没有类似的类
-oasis(oasis);
2004-11-25
(#1999162@0)
-
Are you talking about data type or class?? 类型????
-aka(棒棒);
2004-11-25
(#1999097@0)
-
sorry to let you confused. i am talking about class(C++)
-volunteer(angel);
2004-11-25
(#1999123@0)
-
I remember that class string is part of STL. You can define it yourselft
-willington(居无定所);
2004-11-25
(#1999410@0)
-
if i define it myself, i have to define all the functions.do you know which *.h include its define?thanks
-volunteer(angel);
2004-11-25
(#1999454@0)
-
string.hpp or simply string
-canadiantire(八卦轮胎);
2004-11-26
(#1999821@0)
-
C++ 一般用char *来定义string, CString 是MFC里面的类型, 如果你没有用MFC, 就不应该用CString. 当然你也可以用string, include iostream.h and string.h.刚看到你的帖子, 不知道你的问题解决了没有.
-liuliu2004(生命在于运动);
2004-11-26
(#2000680@0)
-
STL现在已经被包括在C++标准里面了,同样,string现在也已经在C++里面了。C++里用到char*的机会越来越少了,char*不是很好用,特别是对于不熟悉的人来说。
-isup(isup);
2004-11-26
(#2000737@0)
-
i am not a C++ guy, just did a little investiagtion for your reference. http://www.halpernwightsoftware.com/stdlib-scratch/quickref.html#strings2
-aka(棒棒);
2004-11-25
{8080}
(#1999471@0)
-
std::string or using namespace std; #include <iostream>
-isup(isup);
2004-11-26
(#1999812@0)