1. 首页
  2. 编程语言
  3. C++ 
  4. 字符串、运算符重载

字符串、运算符重载

上传者: 2020-07-18 20:53:43上传 DOC文件 36.5KB 热度 19次
赋值、相加、比大小、前++、后++ #include #include class String { private: int length; char *ptr; public: String(char *s); ~String(); String(String &s); void display(); String operator =(String &s); String operator +(String &s); int operator >(String &s); int operator
用户评论