专题博客链接
北大C++ POJ课后习题博客全解记录
原题题目

#include <cstdlib>
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
class MyString:public string
{
};
int main()
{
MyString s1("abcd-"),s2,s3("efgh-"),s4(s1);
MyString SArray[4] = {"big","me","about","take"};
cout << "1. " << s1 << s2 << s3<< s4<< endl;
s4 = s3;
s3 = s1 + s3;
cout << "2. " << s1 << endl;
cout << "3. " << s2 << endl;
cout << "4. " << s3 << endl;
cout << "5. " << s4 << endl;
cout << "6. " << s1[2] << endl;
s2 = s1;
s1 = "ijkl-";
s1[2] = 'A' ;
cout << "7. " << s2 << endl;
cout << "8. " << s1 << endl;
s1 += "mnop";
cout << "9. " << s1 << endl;
s4 = "qrst-" + s2;
cout << "10. " << s4 << endl;
s1 = s2 + s4 + " uvw " + "xyz";
cout << "11. " << s1 << endl;
sort(SArray,SArray+4);
for( int i = 0;i < 4;i ++ )
cout << SArray[i] << endl;
cout << s1(0,4) << endl;
cout << s1(5,10) << endl;
return 0;
}
提示

代码实现
public:
MyString():string(){}
MyString(const char* s):string(s){}
MyString(const MyString& a):string(a){}
MyString(const string& a):string(a){}
friend ostream & operator<<(ostream& os,const string& a)
{
os<<a;
return os;
}
MyString operator()(int start,int length)
{
MyString ret(substr(start,length));
return ret;
}