设为首页收藏本站

新微赢技术网

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

【请教】 这两句话为什么不能换

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-2 02:09:38 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
#include<iostream>
#include<string>
int main()
{
using namespace std;
char animal[20]="bear";
const char* bird="wren";
char* ps;
cout<<animal<<" and ";
cout<<bird<<"\n";
cout<<"Enter a kind of animal:";
cin>>animal;
ps=animal;
cout<<ps<<"s!\n";
cout<<"before using strgy():\n";
cout<<animal<<"at"<<(int*)animal<<endl;
cout<<ps<<"at"<<(int*)ps<<endl;
ps=new char[strlen(animal)+1];//此处为什么不能用 ps=animal;代替
strcpy(ps,animal);
cout<<"after using strcpy():\n";
cout<<animal<<"at"<<(int *)animal<<endl;
cout<<ps<<"at"<<(int *)ps<<endl;
delete[]ps;
return 0;
}
2#
发表于 2009-11-2 02:09:40 | 只看该作者
ps=new char[strlen(animal)+1];//此处为什么不能用 ps=animal;代替
strcpy(ps,animal);

注意后面用到strcpy,这个函数要求两个char*做形参,并且大小要能兼容。
所以要用到上一句,给ps一个适合的大小。
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-3 16:05:04 | 只看该作者
支持一下吧,确实是不错的贴子。
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-19 00:52 , Processed in 0.081069 second(s), 12 queries , Gzip On, Memcache On.

Powered by xuexi

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

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