设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 846|回复: 2
打印 上一主题 下一主题

string pointer的问题

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-3 01:16:18 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
想把一个string赋值到new string返回的地址空间

string s1="hello,world";
string s2=new string;
for(unsigned int i=0;i<=s1.length();i++) s2[i]=s1[i];

编译ok,但运行error,好像是指向了非法地址,这是什么道理?
2#
发表于 2009-11-3 01:16:19 | 只看该作者
You made more than 1 mistake here.
=======================================

#include <iostream>
#include <string>
using namespace std;
int main()
{
string s1 = "hello,world";
string* s2 = new string;
s2->resize(s1.size());
for (unsigned int i = 0; i < s1.length(); i++)
{
s2->at(i) = s1[i];
}
cout << * s2 << endl;
return 0;
}
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-3 01:16:20 | 只看该作者
er.... resize(), at() function and C++ style string. I have checked some documents and I found that I confused char pointer and char array with string pointer and string. Thx HJin.
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 07:45 , Processed in 0.104302 second(s), 10 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表