设为首页收藏本站

新微赢技术网

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

strcat 和strcpy不会用

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-4 01:44:31 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
目的是编一个重载运算符的程序:当输入两个字符时,有以下功能:
1、比较两个字符的大小;
2、连接两个字符串;
3、并且可以进行负值,如:若 a=' hello', b=a ,则 b='hello';
我只编了连接两个字符就很多错了,各位大侠帮忙看看,谢谢了先!!

#include <iostream.h>
#include <string.h>
class zf
{
char * str;
public:
void input()
{
cout<<"输入字符:"<<endl;
cin>>str;
}
void print()
{
cout<<str<<endl;
}
~zf()
{
delete str;
}
friend zf operator + (zf &a,zf &b);
};
zf operator + (zf &a,zf &b)
{
zf temp;
delete temp.str;
temp.str=new char [strlen(a.str)+strlen(b.str)+1];
strcpy(temp.str,a.str);
strcat(temp.str,b.str);
return temp;
}
main()
{
zf a ,b,c;
a.input();
b.input();
c=b+a;
c.print();
return 0;
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-19 00:30 , Processed in 0.126367 second(s), 10 queries , Gzip On, Memcache On.

Powered by xuexi

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

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