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