您好,登錄后才能下訂單哦!
C++中支持原生數(shù)組,但由于原生數(shù)組的天然缺陷(不能獲取長度信息、越界訪問不會(huì)報(bào)錯(cuò)...),我們有必要來開發(fā)自己的數(shù)組類,從而解決這些問題。
數(shù)組類的繼承關(guān)系如圖:
需求分析:
1、由于線性表,不能作為數(shù)組直接使用,我們需要自己實(shí)現(xiàn)一個(gè)數(shù)組類來代替原生數(shù)組。
2、解決原生數(shù)組越界訪問不會(huì)報(bào)錯(cuò)的問題
3、提供數(shù)組的長度信息
template < typename T >
class Array : public Object
{
protected:
T *m_array;
public:
T& operator [] (int index)
T operator [] (int index) const
bool get(int index, const T& e)
bool set(int index, const T& e)
virtual int length(void) = 0;
};
template < typename T >
class Array : public Object
{
protected:
T *m_array;
public:
T& operator [] (int index)
{
if( (index>=0) && (index<length()) )
{
return m_array[index];
}
else
{
THROW_EXCEPTION(IndexOutOfBoundsException, "array index out of range...");
}
}
T operator [] (int index) const
{
return const_cast<Array<T>&>(*this)[index];
}
bool get(int index, const T& e)
{
bool ret = (index>=0) && (index<length());
if( ret )
{
e = m_array[index];
}
return ret;
}
bool set(int index, const T& e)
{
bool ret = (index>=0) && (index<length);
if( ret )
{
m_array[index] = e;
}
return ret;
}
virtual int length(void) = 0;
};
設(shè)計(jì)要點(diǎn):
template < typename T, int N >
class StaticArray : public Array<T>
protected:
T m_space[N];
public:
StaticArray()
// 提供拷貝構(gòu)造喊賦值重載函數(shù),實(shí)現(xiàn)數(shù)組的拷貝
StaticArray(const StaticArray<T, N>& obj)
T& operator = (const StaticArray<T, N>& obj)
int length(void)
};
template <typename T, int N>
class StaticArray : public Array<T>
{
protected:
T m_space[N];
public:
StaticArray()
{
this->m_array = m_space;
}
StaticArray(const StaticArray<T, N>& obj)
{
this->m_array = m_space;
for(int i=0; i<length();i++) // 數(shù)組元素拷貝
{
m_space[i] = obj.m_space[i];
}
}
T& operator ==(const StaticArray<T, N>& obj)
{
if(this != &obj)
{
this->m_array = m_space;
for(int i=0; i<length();i++)
{
m_space[i] = obj.m_space[i];
}
}
}
int length(void)
{
return N;
}
};
設(shè)計(jì)要點(diǎn):類模板
template < typename T >
class DynamicArray : public Array<T>
{
protected:
int m_length;
public:
DynamicArray(int length)
DynamicArray(const DynamicArray<T>& obj)
DynamicArray<T>& operator = (const DynamicArray<T>& obj)
void resize(int length)
~DynamicArray()
};
DynamicArray類中的函數(shù)實(shí)現(xiàn)存在重復(fù)的邏輯,可以進(jìn)行代碼優(yōu)化。
重復(fù)代碼邏輯的抽象:
— init 函數(shù)中實(shí)現(xiàn)對象構(gòu)造時(shí)的初始化操作
— copy 函數(shù)負(fù)責(zé)從堆空間中申請內(nèi)存,并執(zhí)行拷貝構(gòu)造操作
— updata 將指定的堆空間作為內(nèi)部存儲(chǔ)數(shù)組使用
template <typename T>
class DynamicList : public SeqList<T>
{
protected:
int m_capacity;
public:
DynamicList(int capacity)
{
this->m_array = new T[capacity];
if(this->m_array != NULL)
{
this->m_length = 0;
this->m_capacity = capacity;
}
else
{
THROW_EXCEPTION(NoEnoughMemoryException,"No memory to create DynamicList object ...");
}
}
int capacity()const
{
return m_capacity;
}
void resize(int capacity)
{
if(capacity != m_capacity)
{
T* array = new T[capacity];
if(array != NULL)
{
int length = (this->m_length < capacity ? this->m_length : capacity);
for(int i=0;i<length;i++)
{
array[i] = this->m_array[i];
}
T* temp = this->m_array;
this->m_array = array;
this->m_length = length;
this->m_capacity = capacity;
delete[] temp;
}
else
{
THROW_EXCEPTION(NoEnoughMemoryException,"No memory to create DynamicList object ...");
}
}
}
~DynamicList()
{
delete[] this->m_array;
}
};
總結(jié):
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。