自定义String
摘要:
// ShStringNew.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include using namespace std; class SHString { public: SHString(const char* Str = "") :mStr(new char[strlen(Str) + 1]) { st... 阅读全文
posted @ 2017-09-23 16:31 沉疴 阅读(172) 评论(0) 推荐(0) 编辑