构造函数
Posted 大奔的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了构造函数相关的知识,希望对你有一定的参考价值。
- class String
- {
- public:
- String(const char *str=NULL);
- String(const String& other);
- String& operator=(const String& other);
- ~String();
- private:
- char *m_data;
- };
- String::String(const char* str)
- {
- if(str==NULL)
- {
- m_data=new char[1];
- *m_data=‘\0‘;
- }
- else
- {
- int length=strlen(sizeof(str));
- m_data=new char[length+1];
- strcpy(m_data, str);
- }
- }
- String::String(const String &other)
- {
- int length=strlen(other.m_data);
- m_data=new char[length+1];
- strcpy(m_data, other.m_data);
- }
- String& operator=(const String& other)
- {
- if(this==&other)
- return *this;
- delete []m_data;
- int length = strlen(other.m_data);
- m_data=new char[length+1];
- strcpy(m_data, other.m_data);
- return *this;
- }
- ~String()
- {
- delete []m_data;
- }
以上是关于构造函数的主要内容,如果未能解决你的问题,请参考以下文章
Kotlin类的初始化 ② ( 主构造函数 | 主构造函数定义临时变量 | 主构造函数中定义成员属性 | 次构造函数 | 构造函数默认参数 )