摘要: 1 #include <iostream> 2 3 class String 4 { 5 private: 6 char *m_BufMemPtr; 7 int m_BufSize; 8 9 public: 10 String(const char *srcbuf) 11 { 12 m_BufSiz 阅读全文
posted @ 2022-04-11 14:25 小小林林 阅读(25) 评论(0) 推荐(0) 编辑