摘要: #include "stdafx.h" #include #include using namespace std; class MyString { private: char *str; public: MyString(char *s) { str=new char[strlen(s)+1]; strcpy(str,s); ... 阅读全文
posted @ 2015-04-26 17:35 WQZ321123 阅读(340) 评论(0) 推荐(0) 编辑