摘要: #include <iostream> using namespace std; char* mystrcpy(char* dest,const char* src) { if(src==nullptr || dest==nullptr) { return nullptr; } char* addr 阅读全文
posted @ 2022-03-26 14:03 菠萝超级酸 阅读(37) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <memory>//allocator using namespace std; class String { static allocator<char> alloc; private: char *start; char *first_f 阅读全文
posted @ 2022-03-26 13:59 菠萝超级酸 阅读(25) 评论(0) 推荐(0) 编辑