免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 963 | 回复: 4
打印 上一主题 下一主题

请教: string的用法 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-03-20 15:35 |只看该作者 |倒序浏览
#include<iostream.h>;
#include<string.h>;
void main()
{
string st("The expense of sprit\n";
cout<<st<<endl;
}

编译后出现   string  undeclared identifier
我用的是vc   6.0

论坛徽章:
0
2 [报告]
发表于 2005-03-20 15:55 |只看该作者

请教: string的用法

不用后缀.h 式一式,加上 using namespace std;

论坛徽章:
0
3 [报告]
发表于 2005-03-20 15:57 |只看该作者

请教: string的用法


  1. #include<iostream>;
  2. #include<string>;
  3. using namespace std;
  4. void main()
  5. {
  6. string st("The expense of sprit\n");
  7. cout<<st<<endl;
  8. }
复制代码

论坛徽章:
0
4 [报告]
发表于 2005-03-20 16:00 |只看该作者

请教: string的用法

vc里也没有cstring.h吗,如果编译下面的也是出现“找不到该文件”




#include<iostream.h>;
#include<cstring.h>;
void main()
{
        int errors=0;
        const char *pc="a very long literal string ";
        for (int ix=0;ix<100000;++ix)
        {
                int len =strlen(pc);
                char *pc2=new char [len+1];
                strcpy(pc2,pc);
                if (strcmp(pc2,pc))
                        ++errors;
                delete[] pc2;
        }
        cout<<"c-style character string :"<<errors<<"errors occurred"<<endl;
}

论坛徽章:
0
5 [报告]
发表于 2005-03-20 17:09 |只看该作者

请教: string的用法

问题已解决。
多谢了.....
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP