博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【c++】简单的string类的几个基本函数
阅读量:5159 次
发布时间:2019-06-13

本文共 814 字,大约阅读时间需要 2 分钟。

// string的几个基本函数的实现#include 
#include
#include
using namespace std;class String{public: String() { _str = new char[1]; _str[0] = '\0'; } String(char *str) { assert(str != NULL); _str = new char[strlen(str) + 1]; strcpy(_str, str); } String(const String& s) { _str = new char[strlen(s._str) + 1]; strcpy(_str, s._str); } String& operator=(const String& s) { if (this != &s) { delete[] _str; _str = new char[strlen(s._str) + 1]; strcpy(_str, s._str); } return *this; } ~String() { delete[] _str; }public: void getstr() { cout << _str << endl; }private: char *_str;};int main(){ String s; s.getstr(); String s1("123"); s1.getstr(); String s2 = s1; s2.getstr(); s = s1; s.getstr(); return 0;}

转载于:https://www.cnblogs.com/yfceshi/p/7130686.html

你可能感兴趣的文章
有关快速幂取模
查看>>
Linux运维必备工具
查看>>
字符串的查找删除
查看>>
NOI2018垫底记
查看>>
快速切题 poj 1002 487-3279 按规则处理 模拟 难度:0
查看>>
Codeforces Round #277 (Div. 2)
查看>>
【更新】智能手机批量添加联系人
查看>>
NYOJ-128前缀式计算
查看>>
淡定,啊。数据唯一性
查看>>
深入理解 JavaScript 事件循环(一)— event loop
查看>>
Hive(7)-基本查询语句
查看>>
注意java的对象引用
查看>>
C++ 面向对象 类成员函数this指针
查看>>
NSPredicate的使用,超级强大
查看>>
自动分割mp3等音频视频文件的脚本
查看>>
判断字符串是否为空的注意事项
查看>>
布兰诗歌
查看>>
js编码
查看>>
Pycharm Error loading package list:Status: 403错误解决方法
查看>>
steps/train_sat.sh
查看>>