欢迎来到天天文库
浏览记录
ID:13341059
大小:155.50 KB
页数:4页
时间:2018-07-22
《对象作为函数参数》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、对象作为函数参数l对象本身做参数(传值),传对象副本l对象引用做参数(传地址),传对象本身l对象指针做参数(传地址),传对象本身参考函数:l#includel#includel#includelclassCStrSubl{lchar*str;lpublic:lCStrSub(char*s);lCStrSub(CStrSub&);l~CStrSub();lvoidset(char*s);lvoidshow()l{lcout<2、CStrSub::CStrSub(char*s)l{lstr=newchar[strlen(s)+1];lif(!str)l{lcout<<"申请空间失败!"<3、~CStrSub()l{lif(str!=NULL)delete[]str;l}llvoidCStrSub::set(char*s)l{ldelete[]str;lstr=newchar[strlen(s)+1];lif(!str)l{lcout<<"申请空间失败!"<>s;ltemp.set(s);lreturntem4、p;l}llvoidmain()l{lCStrSuba("hello");la.show();lCStrSubb=input(a);la.show();lb.show();l}运行结果截图:⑵要求l修改input(CStrSubtemp)函数,对象引用、对象指针作为函数参数时,程序执行结果与对象作为函数参数有什么不同。(1)CStrSubinput(CStrSub&temp)//使用对象引用作为函数参数运行结果截图(1)CStrSubinput(CStrSub*temp)//使用对象指针作为函数参数运行结果截图:答销网真5、情提供:::::www.daxiao51.com【C++】对象作为函数参数【原创技术】http://www.daxiao51.com/forum.php?mod=viewthread&tid=1564&fromuid=1
2、CStrSub::CStrSub(char*s)l{lstr=newchar[strlen(s)+1];lif(!str)l{lcout<<"申请空间失败!"<3、~CStrSub()l{lif(str!=NULL)delete[]str;l}llvoidCStrSub::set(char*s)l{ldelete[]str;lstr=newchar[strlen(s)+1];lif(!str)l{lcout<<"申请空间失败!"<>s;ltemp.set(s);lreturntem4、p;l}llvoidmain()l{lCStrSuba("hello");la.show();lCStrSubb=input(a);la.show();lb.show();l}运行结果截图:⑵要求l修改input(CStrSubtemp)函数,对象引用、对象指针作为函数参数时,程序执行结果与对象作为函数参数有什么不同。(1)CStrSubinput(CStrSub&temp)//使用对象引用作为函数参数运行结果截图(1)CStrSubinput(CStrSub*temp)//使用对象指针作为函数参数运行结果截图:答销网真5、情提供:::::www.daxiao51.com【C++】对象作为函数参数【原创技术】http://www.daxiao51.com/forum.php?mod=viewthread&tid=1564&fromuid=1
3、~CStrSub()l{lif(str!=NULL)delete[]str;l}llvoidCStrSub::set(char*s)l{ldelete[]str;lstr=newchar[strlen(s)+1];lif(!str)l{lcout<<"申请空间失败!"<>s;ltemp.set(s);lreturntem
4、p;l}llvoidmain()l{lCStrSuba("hello");la.show();lCStrSubb=input(a);la.show();lb.show();l}运行结果截图:⑵要求l修改input(CStrSubtemp)函数,对象引用、对象指针作为函数参数时,程序执行结果与对象作为函数参数有什么不同。(1)CStrSubinput(CStrSub&temp)//使用对象引用作为函数参数运行结果截图(1)CStrSubinput(CStrSub*temp)//使用对象指针作为函数参数运行结果截图:答销网真
5、情提供:::::www.daxiao51.com【C++】对象作为函数参数【原创技术】http://www.daxiao51.com/forum.php?mod=viewthread&tid=1564&fromuid=1
此文档下载收益归作者所有