C/C++面試題:編寫類String的建構函式、解構函式和賦值函式。
阿新 • • 發佈:2019-01-09
考點:建構函式、解構函式和賦值函式的編寫方法
出現頻率:☆☆☆☆☆
已知類String的原型為:
class String
{
public:
String(const char *str = NULL); //普通建構函式
String(const String &other); //拷貝建構函式
~ String(void); //解構函式
String & operator =(const String &other); //賦值函式
private:
char *m_String; //私有成員,儲存字串
};
解析:
程式程式碼如下:
#include <iostream>
using namespace std;
class String
{
public:
String(const char *str = NULL); //普通建構函式
String(const String &other); //拷貝建構函式
~ String(void); //解構函式
String & operator =(const String &other); //賦值函式
private:
char *m_String; //私有成員,儲存字串
};
String::~String(void)
{
cout << "Destructing"<< endl;
if (m_String != NULL) //如果m_String不為NULL,釋放堆記憶體
{
delete [] m_String;
m_String = NULL; //釋放後置為NULL
}
}
String::String(const char *str)
{
cout << "Construcing" << endl;
if(str == NULL) //如果str為NULL,存空字串""
{
m_String = new char[1]; //分配一個位元組
*m_String = '\0'; //將之賦值為字串結束符
}
else
{
m_String = new char[strlen(str) + 1]; //分配空間容納str內容
strcpy(m_String, str); //拷貝str到私有成員
}
}
String::String(const String &other)
{
cout << "Constructing Copy" << endl;
m_String = new char[strlen(other.m_String) + 1]; //分配空間容納str內容
strcpy(m_String, other.m_String); //拷貝str到私有成員
}
String & String:perator = (const String &other)
{
cout << "Operate = Function" << endl;
if(this == &other) //如果物件與other是同一個物件
{ //直接返回本身
return *this;
}
delete [] m_String; //釋放堆記憶體
m_String = new char[strlen(other.m_String)+1];
strcpy(m_String, other.m_String);
return *this;
}
int main()
{
String a("hello"); //呼叫普通建構函式
String b("world"); //呼叫普通建構函式
String c(a); //呼叫拷貝建構函式
c = b; //呼叫賦值函式
return 0;
}
(1)普通建構函式:這裡判斷了傳入的引數是否為NULL。如果是NULL,初始化一個位元組的空字串(包括結束符'\0');如果不是,分配足夠大小長度的堆記憶體儲存字串。
(2)拷貝建構函式:只是分配足夠小長度的堆記憶體儲存字串。
(3)解構函式:如果類私有成員m_String不為NULL,釋放m_String指向的堆記憶體,並且為了避免產生野指標,將m_String賦為NULL。
(4)賦值函式:首先判斷當前物件與引用傳遞物件是否是同一個物件,如果是,不做操作直接返回;否則先釋放當前物件的堆記憶體,然後分配足夠大小長度的堆記憶體拷貝字串。
程式的執行結果如下:
Construcing
Construcing
Construcing Copy
Operate = Function
Destructing
Destructing
Destructing
這裡程式碼第63~66行會發生建構函式以及賦值函式的呼叫,而解構函式的呼叫發生在main()函式退出時
出現頻率:☆☆☆☆☆
已知類String的原型為:
class String
{
public:
String(const char *str = NULL); //普通建構函式
String(const String &other); //拷貝建構函式
~ String(void); //解構函式
String & operator =(const String &other); //賦值函式
private:
char *m_String; //私有成員,儲存字串
};
解析:
程式程式碼如下:
#include <iostream>
using namespace std;
class String
{
public:
String(const char *str = NULL); //普通建構函式
String(const String &other); //拷貝建構函式
~ String(void); //解構函式
String & operator =(const String &other); //賦值函式
private:
char *m_String; //私有成員,儲存字串
};
String::~String(void)
{
cout << "Destructing"<< endl;
if (m_String != NULL) //如果m_String不為NULL,釋放堆記憶體
{
delete [] m_String;
m_String = NULL; //釋放後置為NULL
}
}
String::String(const char *str)
{
cout << "Construcing" << endl;
if(str == NULL) //如果str為NULL,存空字串""
{
m_String = new char[1]; //分配一個位元組
*m_String = '\0'; //將之賦值為字串結束符
}
else
{
m_String = new char[strlen(str) + 1]; //分配空間容納str內容
strcpy(m_String, str); //拷貝str到私有成員
}
}
String::String(const String &other)
{
cout << "Constructing Copy" << endl;
m_String = new char[strlen(other.m_String) + 1]; //分配空間容納str內容
strcpy(m_String, other.m_String); //拷貝str到私有成員
}
String & String:perator = (const String &other)
{
cout << "Operate = Function" << endl;
if(this == &other) //如果物件與other是同一個物件
{ //直接返回本身
return *this;
}
delete [] m_String; //釋放堆記憶體
m_String = new char[strlen(other.m_String)+1];
strcpy(m_String, other.m_String);
return *this;
}
int main()
{
String a("hello"); //呼叫普通建構函式
String b("world"); //呼叫普通建構函式
String c(a); //呼叫拷貝建構函式
c = b; //呼叫賦值函式
return 0;
}
(1)普通建構函式:這裡判斷了傳入的引數是否為NULL。如果是NULL,初始化一個位元組的空字串(包括結束符'\0');如果不是,分配足夠大小長度的堆記憶體儲存字串。
(2)拷貝建構函式:只是分配足夠小長度的堆記憶體儲存字串。
(3)解構函式:如果類私有成員m_String不為NULL,釋放m_String指向的堆記憶體,並且為了避免產生野指標,將m_String賦為NULL。
(4)賦值函式:首先判斷當前物件與引用傳遞物件是否是同一個物件,如果是,不做操作直接返回;否則先釋放當前物件的堆記憶體,然後分配足夠大小長度的堆記憶體拷貝字串。
程式的執行結果如下:
Construcing
Construcing
Construcing Copy
Operate = Function
Destructing
Destructing
Destructing
這裡程式碼第63~66行會發生建構函式以及賦值函式的呼叫,而解構函式的呼叫發生在main()函式退出時