年轻金毛

文章
2
资源
1
加入时间
3年0月9天

大一下 c + + 上机实验总结(十四)

1、阅读程序,其中s::connect()函数实现字符串连接。把这个成员函数改写为重载+运算符函数,并修改main函数的对应代码,使其正确运行。#include #includeusing namespace std;class s{ public:s() { *str = ‘\0’; len = 0; }s( char *pstr ){ strcpy( str,pstr );...